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

export module hello;

import <iostream>;

export namespace hello {
    void say(const char* str) {
        std::cout << str << std::endl;
    }
}