summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/user_headerunit/src/hello.mpp
blob: 5b2f434ad8ffb96b3e55ff891621b7d930cd5552 (plain)
1
2
3
4
5
6
7
8
9
10
module;
#include <cstdio>

export module hello;

export namespace hello {
    void say(const char *arg) {
        printf("%s\n", arg);
    }
}