ada-playground/hello.adb

9 lines
97 B
Ada
Raw Normal View History

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