#Will asyncio come to stdlib?
1 messages · Page 1 of 1 (latest)
There is basic async IO loop implementation provided in std, but async is taking bit of second place in latest release, since it didn't make it into selfhosted compiler yet. You should be able to use stage1 compiler for async though
https://github.com/ziglang/zig/blob/master/lib/std/event/loop.zig
The stdlib already supports async I/O, but only on stage1 for this release as Ciph said.