RosettaCodeData/Task/Input-loop/Seed7/input-loop.seed7
2023-07-01 13:44:08 -04:00

11 lines
201 B
Text

$ include "seed7_05.s7i";
const proc: main is func
local
var string: line is "";
begin
while hasNext(IN) do
readln(line);
writeln("LINE: " <& line);
end while;
end func;