mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-14 13:41:05 +00:00
7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
let message: string = 'Hello, World!';
|
|
|
|
function main(args) {
|
|
console.log(message);
|
|
}
|
|
|
|
exports.main = main; |