Skip to content

Instantly share code, notes, and snippets.

@olance
Created August 31, 2014 16:46
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 olance/3aec27ecd456b80b9e2f to your computer and use it in GitHub Desktop.
Save olance/3aec27ecd456b80b9e2f to your computer and use it in GitHub Desktop.
function hello(name) {
alert('Hello, ' + name + '!');
}
function goodbye(name) {
alert('Goodbye, ' + name + '!');
}
module.exports = {
sayHello: hello,
sayGoodbye: goodbye
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment