Files
RedBear-OS/local/recipes/dev/meson/source/test cases/cmake/8 custom command/main.cpp
T

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;
}