SWITCH and COND offer a special form of conditional program flow. Unlike IF and CASE, they respresent different values based on an expression rather than executing statements. That's why they count as functional.
COND
Whenever multiple conditions have to be considered, COND can do the job. The syn...