Skip to content

ha

Runs a block of code when an fa condition is false.

Use ha immediately after an fa block to provide an alternate branch that runs when the condition is not true.

fa (seemo) { ... } ha { ... }
Two-way branch
diri palo = 3;
fa (palo > 5) {
  kwala("e kgolo");
} ha {
  kwala("e nnye");
}

fa