Files
ts-scripts/bundles/helloworld-bundle-2.ts
2026-02-04 23:34:36 +08:00

11 lines
267 B
TypeScript

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