For the complete documentation index, see llms.txt. This page is also available as Markdown.

ChardScript User Input

ChardScript allows for user input.

That means we are able to ask the user for input but with nothing question.

Example

call username = ask()
echo("Hello " + username + "!")

ChardScript stops executing when it comes to the input() function, and continues when the user has given some input.

Last updated