//Command and Syntax// < > Represents a place where any string can be used " " Text-based string: stores whatever is typed within the quotation marks _ _ Math-based string: stores the answer to any equation within the underscores Variable-based string: stores the answer to the variable typed, no notation needed on the outside print(<string>) -prints whatever is written inside of it, any string can be used varcreate(varname) -creates a variable with no value varcreate(varname=<string>) -creates a variable and sets it's value to the string typed varset(varname=<string>) -sets an already existing variable's value to the string typed input(varname="question") -asks the question written in quotes and sets the variable's value to the answer repeat("#")[ //put lines of code in here// ] -repeats any code inside of the brackets X amount of times forever()| //put lines of code in here// | -repeats any code within it's lines forever if(varname=<string>){ //put lines of code in here// } -runs the code inside of it if a variable is equal to a value ifelse(varname=<string>){ //put lines of code in here// } else //put lines of code in here// } -runs the code inside the first brackets if the variable is equal to a certain value, otherwise it runs the code in the second set of brackets wait("#") -waits the amount of time written within the quotes clear() -clears the terminal tools(text) -runs a pre-programmed tool, current tools include timevar and usernamevar example(text) -replaces your code with pre-programmed code, current examples include dice, countdown, and mathgame