module; #include module hello; using namespace std; namespace hello { void say_hi() { cout << "hello hi!" << endl; } void say_hello() { cout << "hello world!" << endl; } void say_xz() { cout << "hello xz!" << endl; } } // namespace hello