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
Spec: https://github.com/enso-org/design/blob/wip/wd/enso-spec/epics/enso-spec-1.0/03.%20Code%20format%20and%20layout.md#chained-operator-code-blocks
Example:
nums = 1..100 . each random . sort . take 100
Should be equivalent to: nums = (((1..100) . each random) . sort) . take 100
nums = (((1..100) . each random) . sort) . take 100
This is implemented in the parser but not yet supported in translation. I think it could be desugared to applications in the IR?
The text was updated successfully, but these errors were encountered:
|>
buildEngineDistribution
JaroslavTulach
Successfully merging a pull request may close this issue.
Spec: https://github.com/enso-org/design/blob/wip/wd/enso-spec/epics/enso-spec-1.0/03.%20Code%20format%20and%20layout.md#chained-operator-code-blocks
Example:
Should be equivalent to:
nums = (((1..100) . each random) . sort) . take 100
This is implemented in the parser but not yet supported in translation. I think it could be desugared to applications in the IR?
The text was updated successfully, but these errors were encountered: