8 lines
111 B
C++
8 lines
111 B
C++
#include <iostream>
|
|
|
|
|
|
int main() {
|
|
std::cout << "Hello from C++ with CMake!" << std::endl;
|
|
return 0;
|
|
}
|