diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-31 17:34:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-31 17:34:50 +0100 |
commit | e1697421e2c00508cd78976b6ec586e056530c30 (patch) | |
tree | f7d2a8501bfb91cbf2453784895a46d5e3737381 /std/installer/testdata/echo.ts | |
parent | c7a2a33ea1a3245bfc1b9af1db2282ef8e3f7ab3 (diff) |
chore: remove std/installer, port installer tests to Rust (#3843)
Diffstat (limited to 'std/installer/testdata/echo.ts')
-rw-r--r-- | std/installer/testdata/echo.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/std/installer/testdata/echo.ts b/std/installer/testdata/echo.ts deleted file mode 100644 index 84a645433..000000000 --- a/std/installer/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); |