-- {{Ada/Sourceforge|hello_world_1.adb}}
pragma License (Gpl);
pragma Ada_95;
with Ada.Text_IO;
procedure Hello_World_3 is
use Ada.Text_IO;
begin
Put_Line ("Hello World!");
New_Line;
Put_Line ("I am an Ada programm with package use.");
end Hello_World_3;
----------------------------------------------------------------------------
-- $Author$
--
-- $Revision$
-- $Date$
--
-- $Id$
-- $HeadURL$
----------------------------------------------------------------------------
-- vim: textwidth=0 nowrap tabstop=8 shiftwidth=3 softtabstop=3 expandtab
-- vim: filetype=ada encoding=utf-8 fileformat=unix foldmethod=indent