RosettaCodeData/Task/Loops-Foreach/Seed7/loops-foreach.seed7
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

12 lines
238 B
Text

$ include "seed7_05.s7i";
var array string: things is [] ("Apple", "Banana", "Coconut");
const proc: main is func
local
var string: thing is "";
begin
for thing range things do
writeln(thing);
end for;
end func;