Loops/Continue: Difference between revisions

Content deleted Content added
mNo edit summary
Line 131: Line 131:


=={{header|Modula-3}}==
=={{header|Modula-3}}==
Modula-3 defines the keyword <tt>RAISE</tt> as an exception, but when it is used with no arguments, it works just like <tt>continue</tt> in [[C]].
Modula-3 defines the keyword <tt>RAISE</tt> as an exception, but when it is used with no arguments it works just like <tt>continue</tt> in [[C]].


Module code and imports are omitted.
Module code and imports are omitted.
Line 144: Line 144:
END;
END;
</pre>
</pre>


=={{header|Perl}}==
=={{header|Perl}}==