Some updates.

This commit is contained in:
Tomasz Półgrabia 2025-03-09 11:58:55 +01:00
parent a0b3856c69
commit c019a5a884
57 changed files with 2026 additions and 0 deletions

View file

@ -0,0 +1,8 @@
with Ada.Text_IO;
use Ada.Text_IO;
procedure Hello is
package IO renames Ada.Text_IO;
begin
Put_Line("Hello, world");
end Hello;