Releases: nibblebits/marble
Releases · nibblebits/marble
Network Socket Functionality + Bug Fix
- Implemented tcp socket functionality
- Implemented tcp socket server functionality
- Implemented UDP functionality
- Fixed a bug with strings that caused a problem when setting a string index
Marble V0.7.0
- If you call a function incorrectly the system will now show possible function arguments for the function you called.
Marble V0.6.2
Merge pull request #8 from nibblebits/dev Fixed a bug where the ignore char sequence operator ':' even ignores …
Marble V0.6.1
Merge pull request #7 from nibblebits/dev Fixed a bug where directories are loaded as files
Marble v0.4.0
Merge pull request #3 from nibblebits/dev Implemented new functions to allow for reading and writing of binary files, also fixed a protential issue with arrays not being known as arrays when created natively
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"