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

echo(Deno.args.slice(1));