busa
Returns a value from a function.
Use busa inside a function declared with tiro to send a value back to whoever called the function. Execution of the function stops at the busa statement.
Syntax
Section titled “Syntax”busa boleng;Examples
Section titled “Examples”tiro kgolwane(a, b) {
fa (a > b) {
busa a;
}
busa b;
}