mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
7 lines
115 B
C++
7 lines
115 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
std::cout << "Hello Main1!" << std::endl;
|
|
return 0;
|
|
} |