Files
qt-creator/share/qtcreator/templates/wizards/projects/plaincpp/main.cpp
Jake Petroules b0229acd54 Clean up projects wizards and support for Qbs+CMake+qmake to all
Task-number: QTCREATORBUG-17308
Change-Id: I5d320a52f2cc5c0adbaf513985e4be0d75219a7d
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
2017-02-10 18:19:57 +00:00

11 lines
132 B
C++

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