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
Assume '<{ … }>' as multiline node (not in syntax, but for example of how it works under the hood)
for example:
a = let: d = b**2 -4a*c { #value to return x1 = ( -b + sqrt(d))/2a x2 = (-b - sqrt(d)) /2a } end # turns into a = <{ d = b**2 -4a*c return { #value to return x1 = ( -b + sqrt(d))/2a x2 = (-b - sqrt(d)) /2a } }>
a = x<y<z # turns into a = <{ r1 = x<y return if(not r1) false else y<z >}
multi-expression node , semantically, can contains only assignment expressions and return statement at the end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Assume '<{ … }>' as multiline node (not in syntax, but for example of how it works under the hood)
for example:
multi-expression node , semantically, can contains only assignment expressions and return statement at the end
The text was updated successfully, but these errors were encountered: