Menu

[a4223f]: / wikibook / basic / src / hello_world_1.adb  Maximize  Restore  History

Download this file

15 lines (11 with data), 436 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
pragma License (Gpl);
pragma Ada_2022;
with Ada.Text_IO;
procedure Hello_World_1 is
begin
Ada.Text_IO.Put_Line ("Hello World!");
end Hello_World_1;
---------------------------------------------------------------- {{{ ----------
--: vim: set textwidth=0 nowrap tabstop=8 shiftwidth=3 softtabstop=3 expandtab :
--: vim: set filetype=ada fileencoding=utf-8 fileformat=unix foldmethod=syntax :
--: vim: set spell spelllang=en_gb :