12 lines
188 B
C++
12 lines
188 B
C++
#include <iostream>
|
|
#include <cmMod.hpp>
|
|
|
|
using namespace std;
|
|
|
|
int main(void) {
|
|
cmModClass obj("Hello");
|
|
cout << obj.getStr() << endl;
|
|
cout << obj.getOther() << endl;
|
|
return 0;
|
|
}
|