Arena storage pool: Difference between revisions

Content added Content deleted
(→‎{{header|REXX}}: removed inappropriate flagging.)
m (→‎{{header|REXX}}: grammar+)
Line 526: Line 526:


=={{header|REXX}}==
=={{header|REXX}}==
In the REXX language, each (internal and external) procedure has it's
In the REXX language, each (internal and external) procedure has its
own storage (memory) to hold local variables and other information
own storage (memory) to hold local variables and other information
pertaining to a procedure.
pertaining to a procedure.
Line 536: Line 536:
but this isn't specified in the language.
but this isn't specified in the language.
<br>A <tt> DROP </tt> will mark a variable
<br>A <tt> DROP </tt> will mark a variable
as not defined, but doesn't deallocate its storage, but the freed
as not defined, but doesn't necessarily deallocate its storage, but the freed
storage can be used by another variable within the program (or procedure).
storage can be used by another variable within the program (or procedure).
<br>Essentially, the method used by a particular REXX interpreter isn't
<br>Essentially, the method used by a particular REXX interpreter isn't