Skip to content

Syntactic support for grouped local definitions #37

@np

Description

@np

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.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions