-- Source code for an article published at the Ada Home -- -- Introducing Ada -- by Eric DeArment -- January 1998 -- -- See with Ada.Text_IO; use Ada.Text_IO; procedure Hello_World is -- no variables needed here :) begin Put ("Hello world!"); end Hello_World;