_Added in 1.9.0_ *$result* Stores the value returned to a calling routine by the [[/return]] command. *Example*
; Create a alias
alias Example2 {
  return Hello World
}

; Create another alias
alias Example {
  noop $Example2
  echo -ag The return text for Example2 was $result
}