This file is indexed.

/usr/share/freemat/help/text/break.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
BREAK BREAK Exit Execution In Loop

Usage

The break statement is used to exit a loop prematurely.
It can be used inside a for loop or a while loop.  The
syntax for its use is

   break

inside the body of the loop.  The break statement forces
execution to exit the loop immediately.