Skip to content

Instantly share code, notes, and snippets.

@lsmag
Created April 8, 2014 16:37
Show Gist options
  • Save lsmag/10153103 to your computer and use it in GitHub Desktop.
Save lsmag/10153103 to your computer and use it in GitHub Desktop.
# suponha essa função em haskell
add a b = a + b
# currying é fácil
add2 = add 2
add2 4 # 6
# Será que isso é bacana?
add(a, b) = a + b
# Opção 1
add2 = add(2]
# Opção 2
add2 = add(2 ...)
add2(4) # 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment