">  
 progs/helloold.cpp

The following code example is taken from the book
Object-Oriented Programming in C++
by Nicolai M. Josuttis, Wiley, 2002
© Copyright Nicolai M. Josuttis 2002


/* the first C++ program
 * - version for systems that are not standard conforming
 */

#include <iostream.h>  // declarations for I/O

int main()             // main function main()
{
    /* print `Hello, World!' on standard output channel cout
     * followed by an endline (endl)
     */
    cout << "Hello, World!" << endl;
}