Skip to content

Instantly share code, notes, and snippets.

@deepak
Created September 30, 2016 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deepak/710c07fd031fc13f78a8a525f335d34e to your computer and use it in GitHub Desktop.
Save deepak/710c07fd031fc13f78a8a525f335d34e to your computer and use it in GitHub Desktop.
Elm, what is the difference btw these two functions ?
-- Elm, what is the difference ?
\x y -> (x y) -- <function> : (a -> b) -> a -> b
\x y -> (x, y) -- <function> : a -> b -> ( a, b )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment