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

export module hello;

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