Note duplicate parameters

This commit is contained in:
Umur Ozkul 2022-05-03 00:30:41 +02:00
parent 78f46daed8
commit c5ae846df4

View File

@ -71,4 +71,5 @@ describe("function trics", () => {
testEvalToBe("y=2;g(x)=y+1;g(2)", "Ok(3)")
testEvalToBe("y=2;g(x)=inspect(y)+1", "Ok({g: lambda(x=>internal code),y: 2})")
MySkip.testEvalToBe("f(x) = x(x); f(f)", "????") // TODO: Infinite loop. Any solution? Catching proper exception or timeout?
MySkip.testEvalToBe("f(x, x)=x+x; f(1,2)", "????") // TODO: Duplicate parameters
})