HelloWorld (in C++)

by product of starting C++:

#include 

int main() {

    using namespace std;
    cout << "Hello world!" << endl;
    return 0;

}

Leave a Reply