Code segment unload: Difference between revisions

m (→‎{{header|Raku}}: Fix comments: Perl 6 --> Raku)
Line 21:
The <code>CANCEL</code> statement in COBOL unloads from memory the dynamically-loadable module containing the specified program or entry-point.
<lang cobol>CANCEL "foo"</lang>
 
=={{header|Furor}}==
The <code>neglect</code> statement in Furor deletes from memory the named function. It is possible because each function is loaded into a dinamycally allocated memory segment.
<lang Furor>foo neglect</lang>
 
=={{header|Go}}==
Anonymous user