/**
 * Race creates two runners, named maurice and donovan, and runs
 * them concurrently.
 * 
 * @version     1.1    January 25, 2000
 * @author      Franck van Breugel
 * @see Runner
 */
public class Race 
{
    public static void main(String[] args) 
    {
        Runner maurice = new Runner("Maurice");
        Runner donovan = new Runner("Donovan");
        maurice.setPriority(0);
        donovan.setPriority(10);
        maurice.start();
        donovan.start();
    }
}

