= Ada =
 * https://en.wikibooks.org/wiki/Ada_Programming
 * https://en.wikibooks.org/wiki/Ada_Programming/Basic
 * https://craftofcoding.files.wordpress.com/2013/07/ada_strings.pdf
 * https://www.adaic.org/resources/add_content/standards/05rm/html/RM-TOC.html

== Hello world ==
'''hello.adb'''
{{{#!highlight ada
with Ada.Text_IO;
-- comment 
procedure Hello is
begin
   Ada.Text_IO.Put_Line("Hello, world!");
end Hello;
}}}
 * gnat make hello.adb