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

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

void ringo( )
{
    std::cout << "and Ringo\n";
}
