Code segment unload: Difference between revisions

m (omissions)
Line 17:
5010 LET A=1
5020 RETURN</lang>
 
=={{header|Racket}}==
 
Racket has a JIT compiler that translates functions to machine code whenever they are applied. When such a function is garbage-collected, the JITted machine code is released or re-used with it. Therefore, to reclaim some executable code segment, simply drop references to the function.
 
=={{header|Tcl}}==