RosettaCodeData/Task/Arrays/Lisaac/arrays.lisaac

6 lines
102 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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;