//One of the headers used in a static library.
//
//First, compile it with
//
//g++ -c -o john.o john.cc
//
//OPTIONS:    -c do not run the linker
//	      -o name of the object file

#include <iostream>
#include "john.hh"

void john( )
{
    std::cout << "John, ";
}
