RosettaCodeData/Task/Loops-Infinite/Seed7/loops-infinite.seed7

9 lines
128 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
$ include "seed7_05.s7i";
const proc: main is func
begin
while TRUE do
writeln("SPAM");
end while;
end func;