Files
ts-scripts/bundles/hello_world.ts
2026-02-08 22:29:01 +08:00

11 lines
259 B
TypeScript

#!/usr/bin/env runts -- --allow-import
import {log} from "../libraries/deno-commons-mod.ts";
// deno bundle --allow-import hello_world.ts -o helloworld-bundle-2.bundle.ts
async function main() {
log.info("Hello World!");
}
main().catch(console.error);