summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/hello/src/hello.mpp
blob: 9bbd036f0fc5825699d8369486657a02367b8e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
export module hello;

#include <cstdio>

using namespace std;

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