Skip to content

Instantly share code, notes, and snippets.

@lesniakania
Last active November 4, 2015 08:50
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 lesniakania/33288052772c4016c470 to your computer and use it in GitHub Desktop.
Save lesniakania/33288052772c4016c470 to your computer and use it in GitHub Desktop.
// calculator.js
module.exports.sum = function (a, b) {
return a + b;
};
// app.js
var calculator = require("calculator");
console.log(calculator.sum(1, 2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment