RosettaCodeData/Task/Arrays/Lisaac/arrays.lisaac

6 lines
102 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
+ a : ARRAY(INTEGER);
a := ARRAY(INTEGER).create 0 to 9;
a.put 1 to 0;
a.put 3 to 1;
a.item(1).print;