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

9 lines
138 B
Ada
Raw Normal View History

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