Skip to content
New issue

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

Syntactic support for grouped local definitions #37

Open
np opened this issue Aug 22, 2016 · 0 comments
Open

Syntactic support for grouped local definitions #37

np opened this issue Aug 22, 2016 · 0 comments

Comments

@np
Copy link
Owner

np commented Aug 22, 2016

Internally,

let x = e in
let y = f in
g

... is represented as:

let
  x = e
  y = f
in g

but we have no syntactic support for that.

Notice that the scoping rules are to be defined.

@np np added the enhancement label Aug 22, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant