Skip to content

Instantly share code, notes, and snippets.

@koenmetsu
Last active August 29, 2015 14:23
Show Gist options
  • Save koenmetsu/70930e1999ebd536e921 to your computer and use it in GitHub Desktop.
Save koenmetsu/70930e1999ebd536e921 to your computer and use it in GitHub Desktop.
Functional Calisthenics
// multiple param function
let multiply x y =
x * y
// reducing to 1 arg function calls
let multiplyBy2 = multiply 2
let result = multiplyBy2 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment