Minimal C++23 modular hello library — the canonical "hello mcpp" package.
This is the smallest possible mcpp package: one .cppm module exporting one
function. Used as the first integration test for mcpp-index.
# In your mcpp.toml
[dependencies]
"mcpplibs.templates" = "0.0.1"import std;
import mcpplibs.templates;
int main() {
mcpplibs::templates::hello_mcpp();
}mcpp buildApache-2.0. Original implementation in mcpplibs/templates by Sunrisepeak.