Control Flow
The control flow elements can be used to determine the order of and conditions under which an ESDL function or statement is executed. The most common types are conditional structures and loops.
There are two types of conditional statements, if…else and switch…case…default, and three types of loop statements, while, do...while, and for.
In addition, a break statement is available.
The control flow constructions in ESDL are described in more detail in the following subsections.
See also