ada-playground/hello.adb

9 lines
97 B
Ada

with Ada.Text_IO;
use Ada.Text_IO;
procedure Hello is
begin
Put_Line("Hello World!");
end;