Hacker News new | ask | show | jobs
by b3morales 1487 days ago
> Simplicity. Zig has no macros and no metaprogramming

This one is an odd point; this very article is a demonstration of metaprogramming*:

> Thanks to Zig’s type reflection we can read a row of data into a user-provided type without needing to write any “mapping” function: we know the type we want to read (here the User struct) and can analyse it at compile-time.

* Which is a feature I favor, for the record.

2 comments

I think the poster meant "no macros" (and especially no c-style lexical macros)
No metaprogramming as in no separate metalanguage (e.g. templates, macro_rules!)
Homogeneous metaprogramming is a thing...