Here we are... another (kinda bad) "Programming language" (note the quotation marks)... This language is SUPER SIMPLE... it consists of Commands, and each command has Arguments. So far there are only 10 Commands: new (var name) (value) Declares a new variable & assigns it set (var name) (value) Sets a variable value print (value) Prints to Global_stdout (top-left corner) add (var) (value) var + value sub (var) (value) var - value mul (var) (value) var * value div (var) (value) var / value mod (var) (value) var % value (or, "var mod value") get (var name) Declares new var and asks for value random(var name)(min)(max) Declares new var with random value
I did this myself in an hour or two cus I was bored... Example program: get x print x TODO: 1. More commands 2. Another language that compiles down to this programming language