We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
143743f
There was an error while loading. Please reload this page.
This is a Windows CLI v0.1
Basic Commands.!
Input
>> let name = Hello; >> print(name);
Output Hello
Hello
>> let x = Y; >> print(x);
Output Y
Y
>> let print = lol; >> print(print);
Output lol
lol
To exit the CLI. Input >> exit
>> exit