A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
13
Task/Loops-Continue/Ada/loops-continue.ada
Normal file
13
Task/Loops-Continue/Ada/loops-continue.ada
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
with Ada.Text_Io; use Ada.Text_Io;
|
||||
|
||||
procedure Loop_Continue is
|
||||
begin
|
||||
for I in 1..10 loop
|
||||
Put(Integer'Image(I));
|
||||
if I mod 5 = 0 then
|
||||
New_Line;
|
||||
else
|
||||
Put(",");
|
||||
end if;
|
||||
end loop;
|
||||
end Loop_Continue;
|
||||
Loading…
Add table
Add a link
Reference in a new issue