Christoffer Lerno
Christoffer Lerno
We're working on a matrix replacement lib, so I will close this issue.
No, that's just the temp allocators I believe. Readline just happens to use the temp allocators and they're lazily allocated. Recently I added a finalizer to drop the temp allocators...
I happy to hear that!
@barunslick there are several options. The simplest one would be: ```c char[200] buffer; ArenaAllocator arena; arena.init(buffer); String line = io::readline(allocator: &arena)!!; ``` Of course, this one would panic if more...
But you can also just consider writing your own custom function for it.
> ZIP compression? _yoinks C# ZIP library implementation_ If you want to. There are a lot of them out there.
Something like this @rodgomesc 1. Make sure linking links the proper libraries 2. Decide what Android platforms to support (32 bit ARM for example?) 3. Add CI for Android compilation...
I think a best effort thing would be reasonable @radekm. Something on par with Java's built in zip library code.
Well, turning a .c3 file into a IR or a library is exactly what you need a compiler for. So I'm not sure how that could work @rodgomesc
You're talking about the compiler or something else?