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

24 lines
451 B
Ada
Raw Normal View History

2025-03-09 10:58:55 +00:00
with Ada.Text_IO;
use Ada.Text_IO;
with Ada.Command_Line;
use Ada.Command_Line;
procedure Hello is
package IO renames Ada.Text_IO;
package Obj is
type A is tagged record
p: Integer;
end record;
end Obj;
i : Integer := 1;
ooops: Obj.A;
begin
Put_Line("Hello, world");
if i < 2 then
Put_Line("Mniejsze od 2 ");
else
Put_Line("Większe lub równe 2");
end if;
end Hello;