Created
May 19, 2016 07:51
-
-
Save rexcfnghk/bdbf072d8d61bf0d8bc3857631400fdb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// int -> int -> int | |
let add x y = x + y | |
// int -> (int -> int) | |
let add x = (+) x | |
// (int -> int -> int) | |
let add = (+) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment