The Text_IO package was Ada 83. Afterwards it is Ada.Text_IO. The package is 'opened' with 'use Ada.Text_IO' Conforming to usual style.
8 lines
116 B
Ada
Executable File
8 lines
116 B
Ada
Executable File
with Ada.Text_IO;
|
|
|
|
procedure Hello_World is
|
|
use Ada.Text_IO;
|
|
begin
|
|
Put_line ("Hello World");
|
|
end Hello_World;
|