Guest User

Untitled

a guest
Nov 18th, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. local
  2. let id x = x
  3. let f x = x + x
  4. in
  5. let global_decl x =
  6. f (id x)
  7.  
  8. ----
  9.  
  10. let global_decl =
  11. let id x = x in
  12. let f x = x + x in
  13. in fun x ->
  14. f (id x)
  15.  
  16. ----
  17.  
  18. let global_decl x = f (id x)
  19. where
  20. let id x = x
  21. let f x = x + x
  22. end
Advertisement
Add Comment
Please, Sign In to add comment