|
Contents | Previous | Next | Subchapters |
| Syntax |
garbage |
| See Also | pack , load and save |
garbage script returns most of the O-Matrix memory pools
to the system.
clear
function f(x) begin
print "f(", x, ")"
end
x = 1
garbage
f(x)
O-Matrix will reply
f(1)
garbage script cannot be used inside of
begin - end
pair.
pack instead of garbage.
If you continue the example above by entering
mlmode
pack
f(x)
O-Matrix will reply
f(1)