REBOL Programming/recycle

From Wikibooks, open books for an open world
< REBOL Programming
Jump to: navigation, search

Contents

USAGE: [edit]

RECYCLE /off /on /torture 

DESCRIPTION: [edit]

Recycles unused memory.

RECYCLE is a native value.

REFINEMENTS [edit]

  • /off
  • /on
  • /torture -- Temporary internal feature

SOURCE CODE [edit]

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