ChardScript Variables
Variables
Variables are containers for storing data values.
Creating Variables
To declaring a variable, you need use call
to creating a new variable.
A variable is created the moment you first assign a value to it.
Example
Variables do not need to be declared with any particular type, and can even change type after they have been set.
Example
Single or Double Quotes?
String variables can be declared using only double quotes:
Example
Case-Sensitive
Variable names are case-sensitive.
Example
Last updated