welsonjs/helloworld.js
2023-01-31 11:51:38 +09:00

6 lines
104 B
JavaScript

function main(args) {
console.log("Hello world");
console.log(typeof Intl);
}
exports.main = main;