Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 644 Bytes

File metadata and controls

33 lines (23 loc) · 644 Bytes

templates

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.

Usage

# In your mcpp.toml
[dependencies]
"mcpplibs.templates" = "0.0.1"
import std;
import mcpplibs.templates;

int main() {
    mcpplibs::templates::hello_mcpp();
}

Build & test

mcpp build

License

Apache-2.0. Original implementation in mcpplibs/templates by Sunrisepeak.