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

17 lines
322 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;
i: Integer := 3;
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;