Loops/Continue: Difference between revisions

m
m (→‎{{header|PureBasic}}: empty lines; markup)
Line 36:
 
=={{header|ALGOL 68}}==
{{works with|ALGOL 68|Revision 1 - no extensions to language used}}
 
{{works with|ALGOL 68G|Any - tested with release [http://sourceforge.net/projects/algol68/files/algol68g/algol68g-1.18.0/algol68g-1.18.0-9h.tiny.el5.centos.fc11.i386.rpm/download 1.18.0-9h.tiny]}}
 
{{works with|ELLA ALGOL 68|Any (with appropriate job cards) - tested with release [http://sourceforge.net/projects/algol68/files/algol68toc/algol68toc-1.8.8d/algol68toc-1.8-8d.fc9.i386.rpm/download 1.8-8d]}}
 
[[ALGOL 68]] has no continue reserved word, nor does it need one. The continue reserved word is only syntactic sugar for operations that can be achieved without it as in the following example:
<lang algol68>FOR i FROM 1 TO 10 DO
Line 47 ⟶ 53:
OD</lang>
Output:
<pre>
<lang algol68>+1, +2, +3, +4, +5
+61, +72, +83, +94, +10</lang>5
<lang algol68> +16, +27, +38, +49, +510
</pre>
 
=={{header|AutoHotkey}}==