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