You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today the first expression is refused since let expects a dot after the binding, and even if there was something after it, the binding isn't visible afterwards.
The approximate shape of this fix seems to be:
Handle toplevel lets specially in parser. This means they can get their own syntax and AST nodes as well.
Represent the toplevel environment in REPL so that there's a dictionary of mutable variables.
The text was updated successfully, but these errors were encountered:
Today the first expression is refused since let expects a dot after the binding, and even if there was something after it, the binding isn't visible afterwards.
The approximate shape of this fix seems to be:
The text was updated successfully, but these errors were encountered: