summaryrefslogtreecommitdiff
path: root/tests/testdata/echo.ts
blob: 84a645433335c18ec86e9dfbfd39b50651153929 (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);