Mini script interpreter ----------------------- * Call functions in main class. print("hello"); * Read and write variables in main class. x = 1; x = x+1; * Use local variables. local x; x = "hello"; print(x); (Might want to use a "local" declaration so as to not confuse local variables with those in main.)