blob: 6d0008fbbe171553f620cb9d82d2a9fc6a588cdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
module hello;
#include <iostream>
using namespace std;
namespace hello {
say::say(int data) : data_(data) {
}
void say::hello() {
cout << "hello, say class: " << data_ << endl;
}
}
|