ChaosPro Home
Introduction
What's New
Palettes
Using Formulas
Layering in ChaosPro
Rendering
Fractal Parameter Windows
Windows
Menu
3D Transformations
Animations
Formula Compiler
Writing Formulas
Language Reference
Introduction
Basic Syntax
Datatypes
Constants
Variables
Expressions
Operators
Functions
Control Structures
if...else if...else
while
do...while
for
break
return
import
Compiler Directives
Functions
Interface to ChaosPro
Special Features, Notes...
Compatibility
Fractal Type Reference
Tutorials
Appendix
CHAOSPRO 4.0
Release 4.0
.

Break statement

Break ends execution of the current for, while or do..while structure.

When ChaosPro encounteres a break statement, code execution will continue right after the loop.
In case of a for loop, the iteration expression won't be executed (as I said: goes straight forward without looking back, upto the point right after the loop).