Skip to content

Releases: nibblebits/marble

Network Socket Functionality + Bug Fix

06 Aug 21:31
563cd7a
Compare
Choose a tag to compare
  1. Implemented tcp socket functionality
  2. Implemented tcp socket server functionality
  3. Implemented UDP functionality
  4. Fixed a bug with strings that caused a problem when setting a string index

Marble V0.7.0

11 Nov 17:10
b0f7b69
Compare
Choose a tag to compare
  • If you call a function incorrectly the system will now show possible function arguments for the function you called.

Marble V0.6.2

02 Nov 16:28
44a0534
Compare
Choose a tag to compare
Merge pull request #8 from nibblebits/dev

Fixed a bug where the ignore char sequence operator ':' even ignores …

Marble V0.6.1

02 Nov 15:29
c3f3963
Compare
Choose a tag to compare
Merge pull request #7 from nibblebits/dev

Fixed a bug where directories are loaded as files

Marble v0.4.0

27 Sep 21:35
675606a
Compare
Choose a tag to compare
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

19 Sep 20:22
8b5deb1
Compare
Choose a tag to compare

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"