We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The C# version (observed in Mini Micro) allows generated functions to be equal (==).
==
u = function f = function ; end function return @f end function print u == u
Prints 1 in Mini Micro vs 0 in command line.
1
0
The text was updated successfully, but these errors were encountered:
I incline to the CL behavior, which produces 0 as a result.
]a = function; end function ]b = @a ]a = function; end function ]c = @a ]@b == @c 0
After all, the f is redefined after u is called, so they won't be same.
f
u
Sorry, something went wrong.
No branches or pull requests
The C# version (observed in Mini Micro) allows generated functions to be equal (
==
).Prints
1
in Mini Micro vs0
in command line.The text was updated successfully, but these errors were encountered: