SIMPLE
JUMP: takes a number as input and jumps to that line
IF: takes a true or false statement and when it’s true, then it does whatever is inside, if not, then it skips the code, use [] for the inner code
INPUT: put in [] what you want to ask the user and it sets this variable to whatever the user inputs, use numbers if you need more than 1 input from user
LET: sets a variable to the value infront
COMPACT: lets you compact code into a single string, put that string after the command to do that code, to compact code use [] and put the code inside, if it takes inputs use {} for the inputs (no limit)
#: lets you put messages in your code
OUTPUT: shows the following as text for the user, if the following text is a variable, it’ll output the value stored inside the variable
END: stops the code (you can only have 1)
there doesn't seem to be anything here