/usr/share/freemat/help/text/continue.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | CONTINUE CONTINUE Continue Execution In Loop
Usage
The continue statement is used to change the order of
execution within a loop. The continue statement can
be used inside a for loop or a while loop. The
syntax for its use is
continue
inside the body of the loop. The continue statement
forces execution to start at the top of the loop with
the next iteration. The examples section shows how
the continue statement works.
|