SETSWANA TRANSLATION: Skip to content

busa

SETSWANA TRANSLATION: Returns a value from a function.

SETSWANA TRANSLATION: 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.

SETSWANA TRANSLATION: busa boleng;
SETSWANA TRANSLATION: Return the larger of two numbers
tiro kgolwane(a, b) {
  fa (a > b) {
    busa a;
  }
  busa b;
}

tiro