summaryrefslogtreecommitdiff
path: root/tests/projects/console_c++/src/main.cpp
blob: db2361659978d113c4171dd32ceef200e7ce16a5 (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>

using namespace std;

int main(int argc, char** argv)
{
    cout << "hello world!" << endl; 
    return 0;
}