081D3 |
@
|
( id/lam → ob T )
( id/lam → F )
Basic recalling function.
|
0F4DF |
DUP@
|
( id/lam → id/lam ob T )
( id/lam → id/lam F )
Does DUP then <REF>@.
|
08644 |
STO
|
( ob id/lam → )
For ids this assumes ob is not pco. If
replacing some object, that object is copied
to TEMPOB and pointers are updated. For
lams: Errors if lam is unbound.
|
08ED9 |
REPLACE
|
( newob oldob → newob )
Replaces oldob (in memory) with newob.
|
0952D |
PURGE
|
( id → )
Purges variable. Does no type check first.
|
08F9C |
CREATE
|
( ob id → )
Creates a variable in the current directory.
Errors if id is or contains current
directory. Assumes id is not a pco.
|
102BD |
'LAMLNAMESTO
|
( ob → )
STO to LAM LAMLNAME .
|