Marble v0.2.0
Implemented the ability to use if statements without the need for brackets {}
for example
if (x == 0)
print("hello world");
Made it so you can now pass primitive types to vectors and maps instead of relying on creating a new Value object every time
Vector vec = new Vector();
vec.push(32);
Made it so when attempting to use "++" and "--" it tells you they are not supported and to use "+=1" or "-=1"