1
2
3
4
5
6
7
8
9
10
// deno install -n hello https://esm.town/v/jxnblk/hello_cli
export default function main() {
const name = Deno.args[0] || "";
console.log(`hello ${name}`);
}
if (import.meta.main) {
main();
}