mirror of
https://github.com/denoland/deno.git
synced 2025-02-07 23:06:50 -05:00
![Ry Dahl](/assets/img/avatar_default.png)
Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE
8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
async function echox(args: string[]) {
|
|
for (const arg of args) {
|
|
await Deno.stdout.write(new TextEncoder().encode(arg));
|
|
}
|
|
Deno.exit(0);
|
|
}
|
|
|
|
echox(Deno.args);
|