SakeTami
andrewrk
andrewrk

patreon


printf is no special case

In C, compile-time checked arguments for printf is special-case functionality built into the compiler.

Zig's compile-time features allow enough expressiveness that we can implement a more efficient printf and do the argument checking all in the standard library - no special-case code in the compiler.

Read about it more here.


More Creators