Turing complete! Under 300(281) blocks! Make sure to not forget ( and ) in code! Limits: Stores up to 200,000 variables, The highest number on variables is 2^1024 (or around 1 followed by 308 zeros) print(text) Displays (text) on the screen create(text) Creates a variable named (text) and it starts with a value of 0 delete(var) Deletes a variable named (var), deletes the value too Set(var)to(num) Sets the variable named (var) to (num), Supports text Change(var)by(num) Changes variable named (var) by (num), Supports negative numbers Multiply(var)by(num) Multiplies variable named (var) by (num) Divide(var)by(num) Divides variable named (var) by (num) Printvar(var) Displays the value of the variable named (var) on the screen Clear Clears output/result Ask(question)in(var) Asks a question that tells (question) as the question and sets the variable named (var) to the user answer If(var)=(text/num) ( If (var) isn't equals (text/num) then it skips to next ) Ifnot(var)=(text/num) ( If (var) equals (text/num) then it skips to next ) Goto(line) Goes back to the line number (line), mostly used for loops etc Wait(num) Waits (num) seconds before running next line
all by me ofc Games i made: Mini-Chatbot (calculator built-in): create(input) create(1) create(2) Print(Hello, There!) Print(What do you want to ask?) Print(You can ask: Hi, Hello, Calculator, Bye) ask()in(input) if(input)=(hi) ( print(Hello again!) ) if(input)=(hello) ( print(Hello again!) ) if(input)=(calculator) ( Print(First value?) ask()in(1) Print(Second value?) ask()in(2) change(1)by(2) ) If(input)=(bye) ( clear print(Bye!) ) Ifnot(input)=(bye) ( Goto(7)