FORGET
stack
Removes a symbol from the symbol table.
FORGET is available since version 1.0.0.
See also
Signatures
Examples
// Store a value in 'a'
41 'a' STORE
// Forget the value
'a' FORGET
// Conditionally store a new value in 'a'
42 'a' CSTORE
// Notice that 'a' was indeed set by 'CSTORE' and thus was not in the symbol table after the 'FORGET' call
$a