Chooses between two expressions depending on whether the condition is true or false.
For example, @if score >= 0 @then "Positive" @else "Negative" @endif
would check whether the score expression is greater than or equal to zero. If it
was, the result would be the "Positive" text; otherwise it would be the "Negative"
text.