diff options
Diffstat (limited to 'tests/tstreams.nim')
-rwxr-xr-x | tests/tstreams.nim | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/tstreams.nim b/tests/tstreams.nim deleted file mode 100755 index 68ca8eeeb..000000000 --- a/tests/tstreams.nim +++ /dev/null @@ -1,7 +0,0 @@ -import streams - -var outp = newFileStream(stdout) -var inp = newFileStream(stdin) -write(outp, "Hallo! What is your name?") -var line = readLine(inp) -write(outp, "nice name: " & line) |