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
Currently this rule is mentioned in
Note that there is no space allowed before the opening parenthesis of the application. https://pyret.org/docs/latest/Expressions.html#%28part._s~3aapp-expr%29
Spaces are not permitted before the left-angle bracket or after the right-angle bracket https://pyret.org/docs/latest/Expressions.html#%28part._s~3ainst-expr%29
But Pyret will also complain if a space exists before opening parenthesis in
fun f (n): n end
lam (n): n end
This also seems to suggest, that the grammar rule for ‹args› (line 916 below)
pyret-docs/src/lang/forms.scrbl
Lines 911 to 916 in e54e933
args: PARENNOSPACE [list-arg-elt* binding] RPAREN
As a reference, in pyret-grammar.bnf in pyret-lang repo, ‹args› has grammar rule
pyret-grammar.bnf
args: (PARENNOSPACE|PARENAFTERBRACE) [binding (COMMA binding)*] RPAREN
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently this rule is mentioned in
But Pyret will also complain if a space exists before opening parenthesis in
fun f (n): n end
https://pyret.org/docs/latest/s_declarations.html#%28part._s~3afun-decl%29
lam (n): n end
https://pyret.org/docs/latest/Expressions.html#%28part._s~3alam-expr%29
This also seems to suggest, that the grammar rule for ‹args› (line 916 below)
pyret-docs/src/lang/forms.scrbl
Lines 911 to 916 in e54e933
should be updated to
As a reference, in
pyret-grammar.bnf
in pyret-lang repo, ‹args› has grammar ruleThe text was updated successfully, but these errors were encountered: