summaryrefslogtreecommitdiff
path: root/std/prettier/testdata/echox.ts
blob: 5f8306b376314e206854da94b1d91a66ad725523 (plain)
1
2
3
4
5
6
7
8
async function echox(args: string[]) {
  for (const arg of args) {
    await Deno.stdout.write(new TextEncoder().encode(arg));
  }
  Deno.exit(0);
}

echox(Deno.args);