supported data types: 'TEXT'=string 1337=number variable1=variable {1,2,variable,'hello'}=list supported instructions: var NAME=VALUE STDOUT DATA supported math: exponentials (2^3=8)
very simple programming language in scratch bugs: can't do recursive functions (function in a function) notes: !! be careful to not put a space after a new line(;) e.g. var a=2; print a would not work but var a=2;print a would function variables are global and will interfere with main code example codes: var me='hello world';print me var number1=5;var number2=10;print number1^number2