Files
seer/tests/helloadaexceptions/helloadaexceptions.adb
T

18 lines
281 B
Ada
Raw Normal View History

2023-04-02 10:45:53 -05:00
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
procedure helloadaexceptions is
x :integer range 1..20;
y :integer;
begin
put("enter a number "); get(y);
x:=y;
put("thank you");
end helloadaexceptions;