Copyright (c) Hyperion Entertainment and contributors.

AmigaOS Manual: ARexx Special Variables

From AmigaOS Documentation Wiki
Revision as of 12:07, 28 January 2014 by Janne Peräaho (talk | contribs) (Created page with "= ARexx Special Variables = There are three special variables that ARexx sets automatically during execution of a script: RC is set to return code from any executed host comm...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ARexx Special Variables

There are three special variables that ARexx sets automatically during execution of a script:

RC is set to return code from any executed host command. If an ERROR or SYNTAX interrupt occures, RC is set to the error code that triggered the interrupt. The NOVALUE and HALT interrupts have no effect on RC.

RESULT is set by a RETURN instruction in a subroutine that has been called. If the RETURN instruction has no expression on it, then RESULT becomes uninitialized.

SIGL contains the line number of the last instruction that caused a jump to a label.

None of these variables have an initial value. They may be altered by the user, but ARexx will continue to set them automatically when appropriate. The PROCEDURE and DROP instructions also affect these variables.