fubark
fubark
I just made the same script even faster using simd to find the new line character. Also you can now provide a read buffer size to streamLines(). It defaults to...
You've set up bindLib correctly, but you called hts_open with 1 arg instead of 2. Since Cyber currently has function overloading by number of params, it say's it's missing a...
Definitely, Cyber will do this. For desktop, it'll do just as you said, which is wrapping the scripts inside a copy of the VM which is incredibly small (under 2MB)....
Thanks for catching this. The documentation is ahead of the implementation, and this is one such case. You can expect this feature will land though. One thing that may change...
I tried to run paka, a language that uses minivm but ran into issues running fib.paka. Looks like paka might not have been updated in a while though. Then I...
I haven't looked into this but it's probably not that simple to do. I think for now this should be an external library that you import that binds to an...
There's no JSON library atm. @matu3ba was thinking of making one. You can use parseCyon to get back an object from a cyon string.
I'm already seeing problems with {} for string interpolation 😅. For now you can do this: ```text strJson = "\{ name: 'John Doe'\}" objJson = parseCyon(strJson) print objJson.name ```
Are you still getting this with Cyber 0.3?
Did you run `zig build get-tools`?