summaryrefslogtreecommitdiff
path: root/std/prettier/testdata/echox.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/prettier/testdata/echox.ts')
-rw-r--r--std/prettier/testdata/echox.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/std/prettier/testdata/echox.ts b/std/prettier/testdata/echox.ts
deleted file mode 100644
index 5f8306b37..000000000
--- a/std/prettier/testdata/echox.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-async function echox(args: string[]) {
- for (const arg of args) {
- await Deno.stdout.write(new TextEncoder().encode(arg));
- }
- Deno.exit(0);
-}
-
-echox(Deno.args);