Files
qt-creator/share/qtcreator/templates/wizards/projects/plaincpp/main.cpp
Tobias Hunger 6bb78124ab Plain C/CPP Wizards: Use proper main signature
Change-Id: I1d6e83cda2685201aa4126e993dac85cda8315b3
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
2015-09-09 11:24:29 +00:00

11 lines
154 B
C++

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