summaryrefslogtreecommitdiff
path: root/cli/tests/echo.ts
blob: bded2fd0409d36e71b6c477ac09191dcb676e248 (plain)
1
2
3
4
5
6
function echo(args: string[]): void {
  const msg = args.join(", ");
  Deno.stdout.write(new TextEncoder().encode(msg));
}

echo(Deno.args);