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

6 lines
98 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
with Ada.Text_IO; use Ada.Text_IO;
procedure Main is
begin
Put_Line ("Hello world!");
end Main;