jdk-24/test/nashorn/script/basic/moduleload.js.EXPECTED
2017-09-12 19:03:39 +02:00

7 lines
110 B
Plaintext

function (exports) {
exports.func = function() {
print("module.func called");
}
}
module.func called