define(function () { 'use strict'; console.log( 'hello from main.js' ); function foo () { console.log( 'hello from foo.js' ); } foo(); function bar () { console.log( 'hello from bar.js' ); } bar(); }); //# sourceMappingURL=amd.js.map