Rebol Programming/recycle

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
RECYCLE /off /on /torture 

DESCRIPTION:

[edit | edit source]

Recycles unused memory.

RECYCLE is a native value.

REFINEMENTS

[edit | edit source]
  • /off
  • /on
  • /torture -- Temporary internal feature

SOURCE CODE

[edit | edit source]
recycle: native[
    "Recycles unused memory." 
    /off 
    /on 
    /torture "Temporary internal feature"
]