/**
 * Race creates two runners, named maurice and donovan, and runs
 * them sequentially.
 * 
 * @version     1.1    January 28, 2000
 * @author      Franck van Breugel
 * @see Runner
 */
public class Relay 
{
    public static void main(String[] args) 
    {
        Runner maurice = new Runner("Maurice");
        Runner donovan = new Runner("Donovan");
        maurice.start();
        try 
        {
            maurice.join();
            donovan.start();
        } 
        catch (InterruptedException e) {}
    }
}
