Files
qt-creator/share/qtcreator/templates/wizards/cmakeplaincpp/main.cpp
Yuchen Deng 75c7b5f7fd Add plain C/C++ project for CMake
Change-Id: Id9f0982092be182b976a566d0ae5eddd11307db1
Reviewed-by: hjk <qthjk@ovi.com>
2011-11-17 13:25:26 +01:00

10 lines
108 B
C++

#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}