Files
Maxim Reznik 3b452dfa20 Add devcontainer example
Update other examples to avoid deprecated names.
(no-issue-check)
2024-05-27 18:27:33 +03:00

7 lines
97 B
Ada

with Ada.Text_IO;
procedure Print (S : String) is
begin
Ada.Text_IO.Put_Line (S);
end Print;