blob: 48b322ca61c8979f3619fbbcaf4f8d979491582a [file]
module;
#include <iostream> // import declaration
export module hello_world; // module declaration
export void hello() { // export declaration
std::cout << "Hello, world!\n";
}