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 : | |