Any Indian devs who've discovered Zig and have been enjoying it?
Zig's pitch is: C-level control, but with a much cleaner language and toolchain but without taking on Rust's complexity. And comptime is just wonderful. Instead of having separate systems for generics, macros, code generation, reflection, build scripts, etc., Zig lets you execute ordinary Zig code at compile time. Types are first-class compile-time values, and compile-time parameters provide generic programming.
What I really like is that Zig doesn't try to hide the machine from you. Memory, allocation, control flow, errors etc etc? They're all explicit. But at the same time, you don't have to deal with quite as much language machinery as you do in Rust.
I've been playing around with it lately and I'm honestly surprised by how pleasant it feels. I still feel like I'm talking to a machine like in C but without all the footguns that C creates.
Curious if there are other Indian devs here who are using Zig seriously, especially for systems programming, tooling, embedded, game dev, or just experimenting.