1 2 3 4 5 6 7 8 9 10 11
module; export module hello; import <iostream>; export namespace hello { void say(const char* str) { std::cout << str << std::endl; } }