_Added in 1.9.0_ */return [text]* Halts a currently executing script and allows the calling routine to continue processing. *Parameters* table(ktable). |*Parameter*|*Description*| | [text] | Text to return. | *Example*
alias example {
  ;Return the addition of two values.
  /echo -a $add(2, 5)
}
;Add two numbers.
alias add {
  /return $calc($1 + $2)
}