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

8 lines
124 B
Ada
Raw Normal View History

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