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