1package Test1 is 2 3type My_Int is range 0 .. 1000; 4type My_Index is range 0 .. 6; 5type My_Int_Array is array (My_Index) of My_Int; 6 7function First_Function return My_Int_Array; 8 9function Second_Function return My_Index; 10 11end Test1; 12