5 lines
119 B
Ada
5 lines
119 B
Ada
|
|
type Container is array (Positive range <>) of Element;
|
||
|
|
for Item of Container loop
|
||
|
|
Do_Something(Item);
|
||
|
|
end loop;
|