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

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