From WikiChip
mirc/commands/return
< mirc‎ | commands
Revision as of 05:47, 6 December 2013 by David (talk | contribs) (Created page with "The '''/return command''' immediately leaves the current subroutine and returns a given value back to the calling routine (if one exists). This command behaves like most comma...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The /return command immediately leaves the current subroutine and returns a given value back to the calling routine (if one exists). This command behaves like most commands do when it comes to retaining spaces (i.e. multiple spaces are collapsed, leading and trailing are trimmed). If you are looking for a way to preserve spaces consider using the /returnex command instead.

Synopsis

/return [value]

Switches

None

Parameters

  • [value] - The value to return to the calling routine

Example

; /return_example
;
alias return_example {
  ;return the addition of two values
  echo -a $add(2, 5)
}
/* add two numbers 
*/
alias add {
  return $calc($1 + $2)
}

Compatibility

Added: mIRC v4.5

Added On: 30/06/96

Note: Individual switches were not taken into consideration.

See also