diff options
Diffstat (limited to 'cli/tests/testdata/echo.ts')
-rw-r--r-- | cli/tests/testdata/echo.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/tests/testdata/echo.ts b/cli/tests/testdata/echo.ts deleted file mode 100644 index 84a645433..000000000 --- a/cli/tests/testdata/echo.ts +++ /dev/null @@ -1,6 +0,0 @@ -function echo(args: string[]) { - const msg = args.join(", "); - Deno.stdout.write(new TextEncoder().encode(msg)); -} - -echo(Deno.args); |