RosettaCodeData/Task/Input-loop/Elena/input-loop-2.elena

13 lines
214 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import system'io;
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
public program()
{
2020-02-17 23:21:07 -08:00
using(var reader := File.assign:"file.txt".textreader())
2019-09-12 10:33:56 -07:00
{
2020-02-17 23:21:07 -08:00
while (reader.Available)
{
console.writeLine(reader.readLine())
}
2019-09-12 10:33:56 -07:00
}
}