MufiZ v0.9.0 is Released!

The next release codenamed Kova has been released and man this contains a lot of fixes to the language and a lot of refactoring.
The first big thing in this release is the fact that all types in the language are now Zig types! They no longer are C-ABI types, this was a big thing to be able to accomplish and this helps with stability, memory safety and overall ease of development in the language from now on.
We have also added indexing support! This is something I wanted for a while, and now it comes, my next hope in the next release is to introduce a foreach loop, but that has its difficulty to implement.
Anyways indexing is the same as you expect in other languages, we use [idx] and index starts at 0. This is available to be used for Float Vectors only.
var f = {1, 2, 3, 4};
print f[0]; // 1
Along with this, we have made many improvements and fixes to the language, like better keyword looking up, a new Garbage Collector using Generational technique and reference counting. We also have a new allocator interface that replaces the use of malloc/realloc/free, and overall the language is a lot more stable.
Learn more at the Release!





