Skip to content

Instantly share code, notes, and snippets.

@crcastle
Forked from TooTallNate/file1.js
Created September 3, 2011 03:56
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 crcastle/1190530 to your computer and use it in GitHub Desktop.
Save crcastle/1190530 to your computer and use it in GitHub Desktop.
module.exports = function (a, b) {
return a + b
}
var add = require('./file1')
var result = add(1, 4)
console.log(result)
// 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment