Currently this code below gives me the error that the first type should be constrained! But I really need the user to specify that later! How can I go about doing this?
package mult_pack IS
type mult_array is array (natural range <>) of integer range 0 to 9;
type mult_levels is array (natural range <>) of mult_array;
END mult_pack;
I would want to fill mult_levels with type mult_array, so any pointer on this is really appreciated!