Guest User

Untitled

a guest
Jan 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. print_int abs(42)
  2. (* Error: This function has type int -> unit
  3. It is applied to too many arguments; maybe you forgot a `;'. *)
  4.  
  5. print_int (abs(42))
  6. (* Result: 42 *)
Add Comment
Please, Sign In to add comment