==== GARBAGE ==== ---- Force a garbage collection ---- ^ __Input Stack__ ^ ^ __Output Stack__ ^ | **** | **→** | **** | | //Level 1// | //→// | //Level 1// | {{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}} | **Keyword type** | [[manual:chapter5:basics#commands|Command]] || | **Parallel list processing capabilities** | [[manual:chapter5:listproc#group-1commands-that-cannot-parallel-process|Group 1]] | //Commands that cannot parallel process// | | **Affected by flags** | //None// || ---- During usage **newRPL** must remove objects in temporary memory that are no longer being used. This clean-up process (also called //garbage collection//) occurs automatically but since this process can slow down calculator operation at undesired times, it can be forced to occur at will by executing the command ''GARBAGE''. ---- ''GARBAGE'' is specific to **newRPL** and has no direct equivalent in **userRPL**. ---- **__Input__** 4: 3: 2: 1: ………………………………………………………………………………………………………… GARBAGE \\ **__Output__** 4: 3: 2: 1: ………………………………………………………………………………………………………… ---- {{page>manual:chapter6:system&nofooter&noeditbtn&inline}}