Files
qt-creator/share/qtcreator/templates/wizards/plaincppapp/main.cpp
hjk 70aa191b34 plain c++ app wizard: change name from 'qmake console'
Change-Id: I1e3b094c70d8f887d3cd451c961ae067b4423289
Reviewed-on: http://codereview.qt-project.org/5467
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
2011-09-29 16:42:39 +02:00

10 lines
108 B
C++

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