Control Flow Operations

NameVersionDescription
If/Else0.0.1Allows branching dependent on a boolean condition.
Select0.0.1Alternate syntax for a series of if-elses
While0.0.1Repeats a portion of code so long as a boolean condition evaluates to true.
For1.3.4Repeats a portion of code so long as a condition is true which is updated at the end of each iteration
Match0.0.1Allows for pattern matching on a sum type

See Also