Guest User

Untitled

a guest
Apr 27th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Lexical assignment
  2. lvalue = rvalue
  3. Walk up the linked list of parent scopes. If lvalue doesn't exist in this scope or any parent scope, assign it in *this* scope. Otherwise, assign it in the closest parent scope.
  4.  
  5. Dynamic assignment
  6. lvalue := rvalue
  7. Do a straight assignment in this scope.
  8.  
  9. Of course I'm sure elliott will instead want to use lvalue ⎌ rvalue and lvalue ⏏ rvalue
Add Comment
Please, Sign In to add comment