1-- Compile this file with: 2-- gcc -g -c test1.adb 3 4package body Test1 is 5 6function First_Function return My_Int_Array is 7 A : My_Int_Array; 8begin 9 A := (1,2,3,4,5,6); 10 return A; 11end First_Function; 12 13 14function Second_Function return My_Index is 15begin 16 return My_Index'Last; 17end Second_Function; 18 19end Test1; 20