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
Right now we're using an associative list to store the global environment. Instead, we should be using hash tables. We'll need a beefier mechanism for storing environments to accomodate fn and let* - we'll need semantics for merging scopes right to left in order to shadow.
The text was updated successfully, but these errors were encountered:
Background
Right now we're using an associative list to store the global environment. Instead, we should be using hash tables. We'll need a beefier mechanism for storing environments to accomodate
fn
andlet*
- we'll need semantics for merging scopes right to left in order to shadow.The text was updated successfully, but these errors were encountered: