Initial commit
[modules.git] / main.cc
1 //#include <string>
2
3 import helloworld;
4 //import <string>;
5
6 int main() {
7     //std::string s = "foo";
8
9     helloworld:HelloWorld h;
10     h.hello();
11
12     return 0;
13 }