Output Variables
Example
call x = "ChardScript is awesome"
echo(x)Example
call x = "ChardScript "
call y = "is "
call z = "awesome"
echo(x + y + z)Example
call x = 5
call y = 10
echo(x + y)Example
Last updated
call x = "ChardScript is awesome"
echo(x)call x = "ChardScript "
call y = "is "
call z = "awesome"
echo(x + y + z)call x = 5
call y = 10
echo(x + y)Last updated
call x = 5
call y = "John"
echo(x + y)