#from terminal
deno run file.js/ts
#options/flags
Deno.args[0] from std input
deno run file.js/ts 'some input'
#logging
import * as log from "https://deno.land/std/log/mod.ts"
log.info('message')
#from terminal
deno run file.js/ts
#options/flags
Deno.args[0] from std input
deno run file.js/ts 'some input'
#logging
import * as log from "https://deno.land/std/log/mod.ts"
log.info('message')