with Ada.Text_IO; use Ada.Text_IO; --Print a message out to the screen -- date Saturday 13 April 2013 -- https://gcc.gnu.org/onlinedocs/gnat_ugn/Running-a-Simple-Ada-Program.html -- https://stackoverflow.com/questions/12462461/is-it-worth-to-learn-ada-instead-of-another-languages-c-c -- revisited on 07.10.2019 15:10:39 procedure Hello is begin for i in 1..10 loop put('z'); end loop; Put_Line(""); Put_Line("Hello Mike from Ada"); Put_Line("second line"); end hello;