Guest User

Untitled

a guest
Nov 9th, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. # let id x = x;;
  2. val id : 'a -> 'a = <fun>
  3. # let i = id id ;;
  4. val i : '_a -> '_a = <fun>
  5. # i;;
  6. - : '_a -> '_a = <fun>
  7. # i 2;;
  8. - : int = 2
  9. # i;;
  10. - : int -> int = <fun>
  11. #
Advertisement
Add Comment
Please, Sign In to add comment