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

11 lines
291 B
TypeScript

#!/usr/bin/env runts -- --allow-import
import {log} from "https://global.hatter.ink/script/get/@25/deno-commons-mod.ts";
// deno bundle --allow-import helloworld-bundle.ts -o helloworld-bundle.bundle.ts
async function main() {
log.info("Hello World!");
}
main().catch(console.error);