5 lines
102 B
Text
5 lines
102 B
Text
+ a : ARRAY(INTEGER);
|
|
a := ARRAY(INTEGER).create 0 to 9;
|
|
a.put 1 to 0;
|
|
a.put 3 to 1;
|
|
a.item(1).print;
|