RosettaCodeData/Task/Loops-Foreach/Seed7/loops-foreach.seed7
2023-07-01 13:44:08 -04: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;