Loops/Continue: Difference between revisions

m (Everything in this web page's list of related tasks except "Loops/Continue" can now be clicked on to take you to their respective web pages on rosettacode.org.)
(→‎{{header|ALGOL 60}}: Section added)
Line 121:
print (", ")
}</lang>
 
=={{header|ALGOL 60}}==
'''begin'''
'''integer''' i;
'''for''' i:=1 '''step''' 1 '''until''' 10 '''do''' '''begin'''
outinteger(i);
'''if''' i=(i '''div''' 5)*5 '''then'''
outimage
'''else'''
outstring(", ")
'''end'''
'''end'''
 
 
=={{header|ALGOL 68}}==
1,392

edits