gopheta
Repeats a block of code a specific number of times.
Use gopheta when you know how many times you want to repeat something. The loop has three parts: an initializer, a condition, and an update step.
Syntax
Section titled “Syntax”gopheta (init; seemo; tswelopele) { ... }Examples
Section titled “Examples”gopheta (diri i = 0; i < 5; i = i + 1) {
kwala(i);
}