Skip to content

Instantly share code, notes, and snippets.

@teamon
Created February 2, 2013 13:33
Show Gist options
  • Save teamon/4697408 to your computer and use it in GitHub Desktop.
Save teamon/4697408 to your computer and use it in GitHub Desktop.
- fun f a b c = a+b+c;
val f = fn : int -> int -> int -> int
- f 1;
val it = fn : int -> int -> int
- f 1 2;
val it = fn : int -> int
- f 1 2 3;
val it = 6 : int
- val g = f 1;
val g = fn : int -> int -> int
- g 2 3 ;
val it = 6 : int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment