1: //
  2: // Writes the String 'Hello world!' followed by a newline and
  3: // terminates with exit status 0
  4: //
  5: // Author: Florian Schintke <schintke@gmx.de>
  6: //

  8: #include <iostream>

 10: int 
 11: main()
 12: {
 13:   cout << "Hello world!\n";
 14:   return 0;
 15: }