Skip to content

Instantly share code, notes, and snippets.

@thiagocaiubi
Created January 29, 2011 19:17
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 thiagocaiubi/802108 to your computer and use it in GitHub Desktop.
Save thiagocaiubi/802108 to your computer and use it in GitHub Desktop.
Greetings
// requires prototype
var Greetings = Class.create({
initialize: function(who){
window.alert(['Hello ', who, '!'].join(''));
}
});
new Greetings('Tumblr');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment