Skip to content

Instantly share code, notes, and snippets.

@Markavian
Last active September 27, 2016 18:33
Show Gist options
  • Save Markavian/fde8a8f5388242a5cb9ef2e252477e2f to your computer and use it in GitHub Desktop.
Save Markavian/fde8a8f5388242a5cb9ef2e252477e2f to your computer and use it in GitHub Desktop.
var sum = require('./sum');
console.log(sum(2,5), 'should equal 7');
module.exports = function(x, y) {
return x + y;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment