mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
19 lines
247 B
C++
19 lines
247 B
C++
#include <iostream>
|
|
|
|
class TestClass {
|
|
public:
|
|
TestClass();
|
|
};
|
|
|
|
TestClass::TestClass() {
|
|
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
std::cout << "Hello Main2!" << std::endl;
|
|
int* x = NULL;
|
|
std::cout << *x << std::endl;
|
|
return 0;
|
|
}
|