// File Name: FirstProgram.cpp #include using namespace std; // introduces namespace std for cout and cin int main( ) { cout << "Hello out there!\n"; return 0; }