summary refs log blame commit diff stats
path: root/tests/accept/compile/tstreams.nim
blob: 640565a275ebf7cc68a8920a6aead8c098a8b2d0 (plain) (tree)
1
2
3
4
5
6
7



                                
                                        
                        
                                 
import streams

var outp = newFileStream(stdout)
var inp = newFileStream(stdin)
write(outp, "Hello! What is your name?")
var line = readLine(inp)
write(outp, "Nice name: " & line)