Skip to content

Instantly share code, notes, and snippets.

@evilpie
Created July 25, 2010 00:11
Show Gist options
  • Save evilpie/489123 to your computer and use it in GitHub Desktop.
Save evilpie/489123 to your computer and use it in GitHub Desktop.
(function() {
var ident, result, x;
x = function(obj, func) {
return func(obj);
};
ident = function(x) {
return x;
};
result = x({
one: ident(1)
}, function(obj) {
var inner;
inner = ident(obj);
return ident(inner);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment