summary refs log tree commit diff stats
path: root/tests/tstreams.nim
blob: 68ca8eeebcfafc72d1cb75a51310b6dd68961625 (plain) (blame)
1
2
3
4
5
6
7
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)