|
Table of Contents
delDescriptionDelete a variable. Function prototypevoid del <varref:var> Arguments
Return valueNone (void). Exampleint i // create a new variable 'i' echo <zs:isdef "i"> // is 'i' defined? (it should be) del i // delete 'i' echo <zs:isdef "i"> // is 'i' still defined? (it should not be) … the output of which is written to the event log by echo as: true false CommentsNone. See alsoExcept where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Share Alike 3.0 Unported
|