Skip to content

Instantly share code, notes, and snippets.

@erayarslan
Created February 29, 2016 11:56
Show Gist options
  • Select an option

  • Save erayarslan/e46bd9c62efd4e157d0d to your computer and use it in GitHub Desktop.

Select an option

Save erayarslan/e46bd9c62efd4e157d0d to your computer and use it in GitHub Desktop.
calc module for podbot
var Calc = function () {
};
Calc.prototype.add = function (a, b) {
return a + b;
};
module.exports = Calc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment