Skip to content

fa

Runs a block of code only when a condition is true.

Use fa to make decisions in your code. The block inside the curly braces only runs if the condition in parentheses evaluates to nnete (true). Pair with ha for an alternate branch.

fa (seemo) { ... }
Branch on a value
diri palo = 5;
fa (palo > 0) {
  kwala("e kgolo go feta lefela");
}

ha, nnete, maaka