The `if` expression takes a condition and two branches (the 'then' and 'else' branches). Only one branch is executed.
clarity (if (> u10 u5) "larger" "smaller")
Branching logic.
The `if` expression takes a condition and two branches (the 'then' and 'else' branches). Only one branch is executed.
clarity (if (> u10 u5) "larger" "smaller")
1. Does Clarity have an 'else-if'?