Skip to content

Instantly share code, notes, and snippets.

@DrBoolean
Created October 6, 2015 17:57
Show Gist options
  • Select an option

  • Save DrBoolean/1632c2a28e408e421315 to your computer and use it in GitHub Desktop.

Select an option

Save DrBoolean/1632c2a28e408e421315 to your computer and use it in GitHub Desktop.
debug_1
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