forked from qt-creator/qt-creator
12 lines
127 B
C++
12 lines
127 B
C++
|
|
#include <iostream>
|
||
|
|
#include "testfile.h"
|
||
|
|
|
||
|
|
using namespace std;
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
cout << "Hello World!" << endl;
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|