Creating an Array: Difference between revisions

m
(Added Common Lisp section.)
Line 18:
 
Ada array indices may begin at any value, not just 0 or 1
type Arr is array (PositiveInteger range <>) of Integer;
Uninitialized : Arr (1 .. 10);
Initialized_1 : Arr (1 .. 20) := (others => 1);
Anonymous user