aboutsummaryrefslogtreecommitdiff
path: root/samples/C++/hello.cpp
blob: d36f6e67f1ca528465481ffe208d2fa1eefbe58f (plain)
1
2
3
4
5
6
7
8
#include <iostream>

using namespace std;

int main()
{
    cout << "Hello World" << endl;
}