Add a new .cpp file, and add the following code:
Code:
#include <iostream.h> // Allows you to use input/output

void main() { // All console programs must have this function
    cout << "Hello World!" << endl;
}