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.
Syntax
Section titled “Syntax”fa (seemo) { ... }Examples
Section titled “Examples”diri palo = 5;
fa (palo > 0) {
kwala("e kgolo go feta lefela");
}