Memory allocation: Difference between revisions

→‎{{header|REXX}}: added another comment about un-allocation of variables at PROCedure termination. -- ~~~~
(→‎{{header|REXX}}: added another comment about un-allocation of variables at PROCedure termination. -- ~~~~)
Line 752:
 
<lang rexx>drop xyz NamesRoster j k m caves names.</lang>
 
Any variables (that are non-exposed) which are defined (allocated) in a procedure/subroutine/function will be un-allocated at the termination of the procedure/subroutine/function.
<br><br>
 
=={{header|Ruby}}==