1 2 3 4 5 6 7 8 9 10
// module; #include <cstdio> export module hello; using namespace std; export namespace hello { void say(const char* str) { printf("%s\n", str); } }