I want to know if it is possible to initialise this array:
Type Some is array (1..5) of Integer; SomeArray : Some := ( 1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5 ); In some different way, like this:
SomeArray : Some := ( others => n ); Is it possible?