summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/impl_unit/src/hello_impl.cpp
blob: fa17673ab297101aadde7abc55c7764f631269f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module;
#include <iostream>

module hello;
using namespace std;

namespace hello {
void say_hi() {
    cout << "hello hi!" << endl;
}

void say_hello() {
    cout << "hello world!" << endl;
}

void say_xz() {
    cout << "hello xz!" << endl;
}
} // namespace hello