RosettaCodeData/Task/Loops-Do-while/Ada/loops-do-while-2.ada

5 lines
90 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for Value in 0..Integer'Last loop
Put (Value);
exit when Value mod 6 = 0;
end loop;