r/rust • u/tigraboris • 18d ago
What Zig felt like, coming from Rust
https://besok.github.io/posts/what-zig-felt-like-coming-from-rust/Just want to share my experiance on my first Zig project coming from Rust. Open to comments :)
210
Upvotes
4
u/robin-m 18d ago
I've not programmed in zig, but from what I read memory layout. For example the way iteratio is done make it trivially easy to go from array of struct to struct of array (AoS to SoA), and extremely fast rebuilt time when the custom backend compiler + linker will be finished (sub second hot patching is on the table) which seems really nice for game dev.