flst / upstream /emscripten /test /other /hello_world.cppm
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
193 Bytes
module;
#include <iostream> // import declaration
export module hello_world; // module declaration
export void hello() { // export declaration
std::cout << "Hello, world!\n";
}