Skip to content

Instantly share code, notes, and snippets.

@sdepold
Created June 10, 2010 13:00
Show Gist options
  • Save sdepold/432954 to your computer and use it in GitHub Desktop.
Save sdepold/432954 to your computer and use it in GitHub Desktop.
exports.MyLib = function(name){
this.name = name
}
exports.MyLib.prototype.sayHello = function() {
return "Hello " + this.name
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment