RosettaCodeData/Task/Hello-world-Text/Ada/hello-world-text.ada

6 lines
98 B
Ada
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
with Ada.Text_IO; use Ada.Text_IO;
procedure Main is
begin
2015-11-18 06:14:39 +00:00
Put_Line ("Hello world!");
2013-04-10 21:29:02 -07:00
end Main;