Menu

[r244]: / trunk / demos / Source / hello_world_3.adb  Maximize  Restore  History

Download this file

27 lines (22 with data), 644 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- {{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