summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/modulemap.modulemap/src/main.cpp
blob: 6fffc01f77bd2fb011cc535beec3c848e0d3d273 (plain)
1
2
3
4
5
6
7
8
9
// #include "hello.h"
import hello;

int main() {
    hello::say_hello();
    hello::say_xz();
    hello::say_hi();
    return 0;
}