ChardScript Syntax
Quotes
In ChardScript, this programming language only accepts strings with a double quote, not a single quote.
Example
echo("Hello World!")
ChardScript will give an error if it's like this.
Example
Syntax Error:
echo('Hello World!')
Last updated