This commit is contained in:
2026-02-08 22:29:01 +08:00
parent dd2060b9bb
commit d316cddb48
3 changed files with 11 additions and 10 deletions

10
bundles/hello_world.ts Normal file
View File

@@ -0,0 +1,10 @@
#!/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);