Skip to content

Instantly share code, notes, and snippets.

@ojiry
Created March 13, 2012 02:39
Show Gist options
  • Save ojiry/2026241 to your computer and use it in GitHub Desktop.
Save ojiry/2026241 to your computer and use it in GitHub Desktop.
(function() {
var helloWorld2;
// @helloWorld
this.helloWorld = function() {
return alert("Hello World!");
};
// helloWorld2
helloWorld2 = function() {
return alert("Hello World!");
};
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment