code-examples/2015/2015_03/ada/nauka/1/hello.adb

7 lines
97 B
Ada
Raw Normal View History

2025-03-09 10:58:55 +00:00
with Ada.Text_IO;
procedure Hello is
begin
Ada.Text_IO.Put_Line("Hello, world");
end Hello;