ChardScript Variables
Variables
Creating Variables
call x = 5
call y = "Hello World!"
echo(x)
echo(y)call x = 5 # x is number
call x = "Hello World!" # x is string now
echo(x)Single or Double Quotes?
Case-Sensitive
Last updated