| module; | |
| export module hello_world; // module declaration | |
| export void hello() { // export declaration | |
| std::cout << "Hello, world!\n"; | |
| } | |
| module; | |
| export module hello_world; // module declaration | |
| export void hello() { // export declaration | |
| std::cout << "Hello, world!\n"; | |
| } | |