Add clang support
[modules.git] / helloworld.cc
1 module;
2
3 #include <iostream>
4
5 export module helloworld;
6
7 export class HelloWorld {
8 public:
9     void hello() {
10         std::cout << "hello\n";
11     }
12 };