Advertisement
Guest User

Untitled

a guest
Jul 30th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. type 'a user = Some of 'a | None ;;
  2.  
  3. type user_rec = {
  4. mutable id: int ;
  5. mutable code: string ;
  6. mutable password: string ;
  7. mutable first_name: string ;
  8. mutable last_name: string ;
  9. original: user_rec user ;
  10. } ;;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement