Pragmatic directives: Difference between revisions

→‎{{header|REXX}}: added SCOPE as per the task's requirements.
m (→‎{{header|REXX}}: changed wording to fit the margins.)
(→‎{{header|REXX}}: added SCOPE as per the task's requirements.)
Line 572:
execution of the REXX program.
 
Not all REXXes support this condition (option). <br><br>
 
===scope===
The scope for the all the above statements &nbsp; (except for '''options'''), &nbsp; if
issued in the main program,
<br>will be in effect for all internal routines (subroutines/functions/procedures).
 
If the above statements are issued in an internal routine, upon return from
that routine, &nbsp; the
<br>original status is restore &nbsp; (to just before the
invoke of that routine).
 
For external routines, the defaults are used. <br><br>
 
=={{header|Tcl}}==