5 lines
73 B
Text
5 lines
73 B
Text
|
|
S := {1,2,3,5,8,13,21,34,55,89};
|
||
|
|
for e in S loop
|
||
|
|
print(e);
|
||
|
|
end loop;
|