Skip to content

Instantly share code, notes, and snippets.

@jsmarkus
Last active December 12, 2015 04:18
Show Gist options
  • Save jsmarkus/4713579 to your computer and use it in GitHub Desktop.
Save jsmarkus/4713579 to your computer and use it in GitHub Desktop.
define(function (require, exports, module) {
var foo = require('Foo');
foo('hello!');
});
define(function (require, exports, module) {
module.exports = function (msg) {
console.log(msg);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment