_Added in 1.9.0_ */returnex [text]* Halts a currently executing script and allows the calling routine to continue processing. Same as [[/return]] but retains all spaces, including leading, trailing, and multiple. *Parameters* table(ktable). |*Parameter*|*Description*| | [text] | Text to return. | *Example*
alias example {
  ;Prints 9: ABC.
  echo -a $len($preserve_space)
 
  ;Prints 5: ABC.
  echo -a $len($strip_space)
}
 
;Return with the spaces intact.
alias preserve_space returnex $get_abc
 
;Collaps spaces.
alias strip_space return $get_abc
 
;Just an example string "ABC".
alias get_abc returnex $+($chr(32), A, $chr(32), $chr(32), B, $chr(32), $chr(32), C, $chr(32))