Files
qt-creator/share/qtcreator/templates/wizards/cmakeplaincpp/main.cpp

10 lines
108 B
C++
Raw Normal View History

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