= 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 == Hello world == '''hello.adb''' {{{#!highlight ada with Ada.Text_IO; procedure Hello is begin Ada.Text_IO.Put_Line("Hello, world!"); end Hello; }}} * gnat make hello.adb