mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00

Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE
6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
function echo(args: string[]) {
|
|
const msg = args.join(", ");
|
|
Deno.stdout.write(new TextEncoder().encode(msg));
|
|
}
|
|
|
|
echo(Deno.args);
|