Using the C++23 std Module with GCC 15
Michael
A couple months ago, I wrote about Using the C++23 std Module with Clang 18. Now that GCC 15 has been released, there is support for the C++23 std module in GCC as well. We use the following minimal example for testing this feature: import std; int main() { std::print("Hello world!\n");...