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/fbea579f0149c3709301 to your computer and use it in GitHub Desktop.
Save lesniakania/fbea579f0149c3709301 to your computer and use it in GitHub Desktop.
// calculator.js
define({
sum: function(a, b) {
return a + b;
}
});
// app.js
define(["./calculator"], function(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