Skip to content

gongwe

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

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

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

fa