1 2 3 4 5 6 7 8 9
module; #include <iostream> export module bar; namespace bar { export void hello() { std::cout << "Hello world2" << std::endl; } } // namespace bar