Skip to content

Instantly share code, notes, and snippets.

@tomsato
Created January 17, 2016 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomsato/a99fb801014e6b8ff103 to your computer and use it in GitHub Desktop.
Save tomsato/a99fb801014e6b8ff103 to your computer and use it in GitHub Desktop.
var hoge = (function(){
var x = {p:3, q:5}
return function() {return x.p + x.q;}
})();
print(hoge()); // 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment