summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.ide/templates/projecttemplates/HelloWorldCPPAutotoolsProject/src/Basename.cpp
blob: 986dd356e34196eb0fbb58b901e2296c368c6b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

using namespace std;

int main(void) {
        cout << "Hello World" << endl; /* prints Hello World */
        return 0;
}