add examples for setting C++ standard

This commit is contained in:
Thom Troy
2016-09-04 23:23:28 +01:00
parent f906c730fd
commit 2b7eaabe61
10 changed files with 384 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <iostream>
int main(int argc, char *argv[])
{
auto message = "Hello C++11";
std::cout << message << std::endl;
return 0;
}