=[[4rpl:start| Index]]
* [[4rpl:commands:ClearLocals|Locals]]
* [[4rpl:commands:ClearGlobals|Globals]]
====== ClearLocals ======
===== Syntax =====
ClearLocals
===== Description =====
Clears all local variables. Local variables persist across script invocations.
===== Examples =====
1 ->temp
<-temp Trace #prints out 1 to the tracelog
ClearLocals
<-temp Trace #prints out 0 to the tracelog
~~NOTOC~~