Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Created May 19, 2016 07:51
Show Gist options
  • Save rexcfnghk/bdbf072d8d61bf0d8bc3857631400fdb to your computer and use it in GitHub Desktop.
Save rexcfnghk/bdbf072d8d61bf0d8bc3857631400fdb to your computer and use it in GitHub Desktop.
// 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