5 lines
78 B
Text
5 lines
78 B
Text
|
|
sequence s = repeat(0,5)
|
||
|
|
for i=1 to length(s) do
|
||
|
|
s[i] = my_func()
|
||
|
|
end for
|