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
statement will be a foreach, i.e. new syntax
for i in 0..9 do IO.Std.err.println("blah"); od
is equivalent to old L syntax
foreach var i; 0..9 do IO.Std.err.println("blah"); od
Note
var
let
The text was updated successfully, but these errors were encountered:
Parse and print for statements
7ca62b6
#10
degory
No branches or pull requests
statement will be a foreach, i.e. new syntax
is equivalent to old L syntax
Note
var
- loop variable is auto-declaredlet
, scoped to body of loopThe text was updated successfully, but these errors were encountered: