Zbex run and stop statements

From CCARH Wiki
Jump to navigation Jump to search
Previous chapter
Assignment statements
Zbex
Manual
Next Chapter
Input and output

The last statement in an Zbex program must be the run statement. The program will compile but will not run without this statement. Any code or text below (after) the run statement in a file or in a window will be ignored.

You can cause your program to terminate at any location with the stop statement. The compiler automatically compiles a stop statement before the run statement and before any procedure statement. This prevents program control from entering a procedure by accident.