update mod and add bundle

This commit is contained in:
2026-02-04 23:27:33 +08:00
parent c0a71fe607
commit a325ccef2f
3 changed files with 126 additions and 99 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env runts -- --allow-import
import {log} from "https://global.hatter.ink/script/get/@18/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);