mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 01:58:05 -05:00
92a8d09e49
Closes https://github.com/denoland/deno/issues/23036 --------- Co-authored-by: Nathan Whitaker <nathan@deno.com>
7 lines
126 B
JavaScript
7 lines
126 B
JavaScript
#!/usr/bin/env -S node
|
|
|
|
import process from "node:process";
|
|
|
|
for (const arg of process.argv.slice(2)) {
|
|
console.log(arg);
|
|
}
|