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