mirror of
https://github.com/tauri-apps/deno.git
synced 2026-02-05 11:11:18 +01:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
function echo(args: string[]) {
|
|
const msg = args.join(", ");
|
|
Deno.stdout.write(new TextEncoder().encode(msg));
|
|
}
|
|
|
|
echo(Deno.args.slice(1));
|