Keywords:
print;
color;
title;
goto;
pause;
cls;
delay;
set;
exit;
How to use
Outputs text or variables to the console.
print Hello, World!
print $variable
Supports variables with $ prefix.
- color
Changes the console text color.
color red
Preset colors: black, blue, green, red, purple, yellow, white, gray, violet.
- title
Sets the console window title.
title My Program
- goto
Jumps to a specific line number.
goto 10
Line numbers start at 1.
- pause
Pauses execution until a key is pressed.
pause
- cls
Clears the console screen.
cls
- delay
Pauses execution for milliseconds.
delay 1000
(Will pause for 1 second)
- set
Assigns values to variables.
set name = John
set count = 10
Variables are accessed with $ (e.g. $name)
- exit
Terminates the program immediately.
exit
More Commands Coming Soon!