Skip to content

Instantly share code, notes, and snippets.

@raphaelgabbarelli
Last active August 29, 2015 14:12
Show Gist options
  • Save raphaelgabbarelli/d7894cef9f4ec2b1b93a to your computer and use it in GitHub Desktop.
Save raphaelgabbarelli/d7894cef9f4ec2b1b93a to your computer and use it in GitHub Desktop.
the greeting manager
var greetingManager = function(greeter){
self = this;
this.greeter = greeter;
this.greet = function(name){
self.greeter.greet(name);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment