C++20 Modules
In this article, we’ll see how to create and use C++20 modules. We’ll use clang-16 to compile our code.
Prerequisites
OSX comes with clang-14 by default (2023). We can check its version with the following command:
1clang --version
2Apple …