DryLang uses if, elif, and el (else).
Note: DryLang does not have a ternary conditional operator (
? :). Syntax minimalism dictates thatif/elor the null coalescing operator (??) is sufficient.
Additionally, the unknown keyword resolves to falsy:
The on statement replaces traditional switch. No case keyword — just value and block.