// CommonJs Module Format
module.exports = 123;
// but you can use amd style requires
require(
["./amd", "./harmony"],
function(amd1, harmony) {
var amd2 = require("./amd");
var harmony2 = require("./harmony");
}
);