102
Let's talk about Zig
(programming.dev)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
comptime is a huge killer feature for me. I used it to generate ARM lookup tables at compile time and it's amazing, it also removes the need for generics as types are just arguments
for example the
Vec
function accepts a type as and returns a struct that can hold arbitrary amounts of said type on the heap.I eventually switched to rust + proc macros tho (zig solution was MUCH cleaner!) because both ZLS and the Zig compiler are terrible and still needs a lot of work.