blob: 6ddcc1d7fd295b86bf952594ca2473d8ec0852c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module;
#include <iostream>
export module hello;
export namespace hello {
class say {
public:
say(int data);
void hello();
private:
int data_;
};
} // namespace hello
|