Zig is also a C Compiler § One of the main features of Zig is @cImport and C Translation. This is accomplished by linking against Clang libraries. Clang is a fully featured C and C++ compiler. Zig has all this functionality - so we may as well expose it! The zig cc command exposes clang, which you can see with this amusing output: $ zig cc --version clang version 8.0.0 ... zig cc is a bit of a low

