1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
///
/// We include the C++ header files for I/O operations
///
#include <iostream>

int
main()
{
    ///
    /// We next explain the output streaming.
    ///
    std::cout << "Hello world!" << std::endl;

}