I have been thinking of learning some programming recently, but I don’t feel confident enough. Is there any point in beginning with something like Zig or Go, and switching to something more serious later?
I have been thinking of learning some programming recently, but I don’t feel confident enough. Is there any point in beginning with something like Zig or Go, and switching to something more serious later?
Zigs goal is to be more pragmatic than C.
It is quite possibly the worst language to vibecode in, it is updating fast so LLMs usually don’t know what format to use (meaning a person who knows zig must fix those format errors). You can also get an LLM to write terrible rust code and while it will perform shit it will probably work, Zig on the other hand has manual memory management and everything has to be thought about or else it won’t work. This is why once Anthropic bought bun they decided to vibe remove zig.
As the previous comment said the lead developer for zig really, Really, doesnt like AI and much of the community is also using zig because of its human focus. (Such as me)
The great benifit of Zig over C in my opinion, is it is more human readible, especially in terms of what is happening with memory management. Zig aims to have no hidden actions making it just as low level than C while making more sense and hiding less.