RosettaCodeData/Task/Inverted-syntax/Ada/inverted-syntax.ada

6 lines
67 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Foo := 1;
loop
exit when Foo = 10;
Foo := Foo + 1;
end loop;