Hacker News new | ask | show | jobs
by forgotpwd16 224 days ago
>Only the first and third part are compulsory in Zig, which is kind of puzzling, coming from Java or C.

Funny they mention Java that has got type inference few years now. Even C got a weaker version of C++'s auto in C23.

1 comments

One of the many things I don't like about C++ is that auto isn't type inference but instead C++ has type "deduction" which is a little different, in some cases a type will be "deduced" even though what you wrote was ambiguous and you may have wanted a different type.