A written text based language in Scratch called STBL (similar to BASIC)! The language is an interpreter and compiles into running code when you run it. Current Functions Within STBL: //run - runs the program //rep - type in the new code and when prompted again type in the line to replace //stop - stops the project var _ = _ - defines a new variable |-> first blank is the variable name |-> the second blank is its value |-> e.x. var x = 5 read _ - reads already defined variables |-> the blank is the already defined variable name |-> e.x. read x write _ - writes text to the console |-> can be written in with a single word such as: write Hello. |-> also with quotes for multi-word writings like: write “Hello, World!” |-> as well as: write read x change _ = _ or change _ = _ + _ - changes a variable to a new value |-> the first blank is the already defined variable’s name |-> the second blank is the new value (number or read _) |-> the + can also be changed to -, *, or / |-> the last blank is the other value (number or read _) |-> e.x. change x = 6 or change x = read x + 7 or change x = 7 + read x or change x = 5 + 7 prompt _ = _ - takes user input and changes an already existing variable |-> the first blank is the already existing variable’s name |-> the second blank is the question you want to ask the user