welsonjs/helloworld.ts

7 lines
104 B
TypeScript
Raw Permalink Normal View History

2022-12-22 06:55:00 +00:00
let message: string = 'Hello, World!';
function main(args) {
console.log(message);
}
2022-12-22 07:17:10 +00:00
export {main}