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

8 lines
124 B
Ada

with Ada.Text_IO;
procedure Hello is
package IO renames Ada.Text_IO;
begin
IO.Put_Line("Hello, world");
end Hello;