Skip to content

Marble v0.2.0

Compare
Choose a tag to compare
@nibblebits nibblebits released this 19 Sep 20:22
· 34 commits to master since this release
8b5deb1

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"