ha
Runs a block of code when an
facondition is false.
Use ha immediately after an fa block to provide an alternate branch that runs when the condition is not true.
Syntax
Section titled “Syntax”fa (seemo) { ... } ha { ... }Examples
Section titled “Examples”diri palo = 3;
fa (palo > 5) {
kwala("e kgolo");
} ha {
kwala("e nnye");
}