Else

Flow control
Aptilis 1

Else

Else is the statement that can be put in the middle of an if block.
All the lines before the 'else' will be run if the condition on the 'if' line is true. Code after the else will be run if the condition is false.

See the full description and examples on the if page.