How do I use the $result identifier?
mirc help gives the following
Quote:
$result
Stores the number value returned to a calling routine by the /return command.


I get the error message
Quote:
* No such identifier: $result (line 3, alias1.ini)

from the following code
Code:
test { 
  echo -s $result($test2($1,$2))
}
test2 {
  return $calc($1 * $2)
}