Skip to content

Instantly share code, notes, and snippets.

@rpetrich
Created January 11, 2013 15:55
Show Gist options
  • Save rpetrich/4511738 to your computer and use it in GitHub Desktop.
Save rpetrich/4511738 to your computer and use it in GitHub Desktop.
function makePair(left, right) {
return { left: left, right: right };
}
window["add"] = function(a, b) {
var pair = makePair(a, b);
return t.left + t.right;
}
window.add=function(a,b){return a+b};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment