| GlobalMemory |
| Syntax |
GlobalMemory():TAGGED("Memory")
|
| Description |
| Example |
Use R ::= QQ[x,y,z];
A := 3;
ENV.R.B := 7;
MEMORY.C := 6;
GlobalMemory();
["C", "DEV", "ENV", "ERR", "PKG"]
-------------------------------
MEMORY.ENV; -- the record holding the rings defined during the
-- CoCoA session
Record[QQ = QQ, QQt = QQ[t], R = QQ[x,y,z], ZZ = ZZ]
-------------------------------
Memory(); -- the working memory
["A", "It"]
-------------------------------
Memory(R); -- the global variables bound to the ring R
["B"]
-------------------------------
|
| See Also |