<a href="http://orwelldevcpp.blogspot.com/">http://orwelldevcpp.blogspot.com</a> Tools -> Compiler Options F11.File -> New -> Source File (or Ctrl+N)1
2
3
4
5
6
#include <iostream>
int main()
{
auto x = R"(Hello world!)";
std::cout << x;
}
File -> Save As... (or Ctrl+Alt+S).cpp extension, such as example.cpp.F11 should compile and run the program.x, the compiler does not understand the new meaning given to auto since C++11. Please, make sure you downloaded the latest version as linked above, and that you enabled the compiler options to compile C++11 as described above.