RosettaCodeData/Task/Loops-Foreach/SETL/loops-foreach.setl

5 lines
73 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
S := {1,2,3,5,8,13,21,34,55,89};
for e in S loop
print(e);
end loop;