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

9 lines
162 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import system'routines;
import system'io;
import extensions'routines;
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
2026-02-01 16:33:20 -08:00
ReaderEnumerator.new(File.assign("file.txt")).forEach(PrintingLn)
2023-07-01 11:58:00 -04:00
}