Advertisement
tinyevil

Untitled

Dec 12th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. (
  2. id
  3. x = y
  4. a=b
  5. )
  6.  
  7. parsed as:
  8.  
  9. list(
  10. sym("id"), sym("x"), sym("="), sym("y"),
  11. sym("a"), sym("="), sym("b")
  12. )
  13.  
  14. instead of
  15.  
  16. list(
  17. sym("id"),
  18. list ( sym("x"), sym("="), sym("y") ),
  19. list ( sym("a"), sym("="), sym("b") )
  20. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement