Created
April 15, 2016 01:52
-
-
Save emanon-was/b91aa2d1f443a3869c1853c4524e234f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| def add = { a -> { b -> { c -> | |
| return a + b + c; | |
| }}}; | |
| println add(1)(2)(3); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment