Source of Hello1.cpp


  1: //Hello1.cpp

  2: 
  3: #include <iostream>

  4: //This is a "using directive":

  5: using namespace std;
  6: 
  7: int main()
  8: {
  9:     cout << "\nHello, world!" << endl;
 10: }