-- -- Filename: -- -- hello2.adb -- -- Description: -- -- Example showing the use of a user-defined package. -- with IO; procedure Hello2 is use IO; begin Put_Char ('H'); Put_Char ('e'); Put_Char ('l'); Put_Char ('l'); Put_Char ('o'); Put_Char (' '); Put_Char ('W'); Put_Char ('o'); Put_Char ('r'); Put_Char ('l'); Put_Char ('d'); Put_Char (ASCII.LF); end Hello2;