====== del ======
===== Description =====
Delete a variable.
===== Function prototype =====
void del 
===== Arguments =====
^ Name ^ Type ^ Comment ^
| var | varref | A reference to the variable to be deleted. |
===== Return value =====
None (void).
===== Example =====
int i // create a new variable 'i'
echo  // is 'i' defined? (it should be)
del i // delete 'i'
echo  // is 'i' still defined? (it should not be)
... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as:
true
false
===== Comments =====
None.
===== See also =====
  * [[plugins:general:zeoscript:reference:functions:new]]
  * [[plugins:general:zeoscript:reference:functions:del]]