This language is just for the learning experience of writing a stackbased interpreted language.
It is not intended for serious use.
- Make a decision about how to store strings so things are consistent, store as string or int array?
- Make jumps take params from the stack
- can store variables with static typing (once a variable is a type it cannot be re-typed)
- can read variables
- can do arithmatic
- can compare values ==, >, <
- can define and execute conditional loops
- can define and execute if-else
- can read and write files