RosettaCodeData/Task/Integer-sequence/Ada/integer-sequence-2.ada

8 lines
164 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
with Ada.Text_IO;
procedure Positives is
begin
for Value in Positive'Range loop
Ada.Text_IO.Put_Line (Positive'Image (Value));
end loop;
end Positives;