You are here

C++ - Hello World

#include <iostream.h>
 
using namespace std;
 
int main()
{
    cout << "hello world" << endl;
 
    return 0;
}