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
I am thinking that would be great if the language could express the function declarations in a more math way like:
sum = fn(x, y) { x + y }; return sum(1, 4)
or even:
fn sum(x, y) = { x + y }; return sum(1, 4)
Just thinking
The text was updated successfully, but these errors were encountered:
First part done in 9529402: let foo = fn [x] { x + 1 }
let foo = fn [x] { x + 1 }
Sorry, something went wrong.
No branches or pull requests
I am thinking that would be great if the language could express the function declarations in a more math way like:
or even:
Just thinking
The text was updated successfully, but these errors were encountered: