/**
 * PrinterTest creates two threads, named 1 and 2, which print their
 * names ITERATION times, and runs them concurrently.
 *
 * @version     1.1    January 25, 2000
 * @author      Franck van Breugel
 * @see Printer
 */
public class PrinterTest 
{
    public static void main(String[] args) 
    {
        new Thread(new Printer(), "1").start();
        new Thread(new Printer(), "2").start();
    }
}

