Difference between revisions of "Command:DeleteVariable"
Jump to navigation
Jump to search
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== Syntax == | == Syntax == | ||
+ | {{CMD-DR|DeleteVariable|Intermediate|Intermediate|Beginner|Intermediate}} | ||
+ | DeleteVariable <name> | ||
== Description == | == Description == | ||
+ | Deletes a script- or global-scope variable. | ||
== Examples == | == Examples == | ||
+ | === Deleting a single variable === | ||
+ | DeclareVariable MyVariable int script | ||
+ | . | ||
+ | . | ||
+ | . | ||
+ | DeleteVariable MyVariable | ||
== See Also == | == See Also == | ||
*[[LavishScript:Commands|Commands]] | *[[LavishScript:Commands|Commands]] | ||
+ | {{Command-Stub}} | ||
+ | [[Category:LavishScript]] | ||
+ | [[Category:LavishScript Commands]] |
Latest revision as of 23:14, 19 September 2005
Syntax
DeleteVariable | |
Usage | Intermediate |
Level of Understanding | Intermediate |
Computer Savvy | Beginner |
Logic | Intermediate |
DeleteVariable <name>
Description
Deletes a script- or global-scope variable.
Examples
Deleting a single variable
DeclareVariable MyVariable int script . . . DeleteVariable MyVariable