Created
October 6, 2015 17:57
-
-
Save DrBoolean/1632c2a28e408e421315 to your computer and use it in GitHub Desktop.
debug_1
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
| var add = curry(function add(x, y){ return x + y }); | |
| var map = curry(function map(f, xs){ return xs.map(f) }); | |
| var head = function(xs){ return xs[0] }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment