9 lines
100 B

define(function () { 'use strict';
function foo () {
return 42;
}
console.log( foo() );
});