/**
 * PrinterTest tests the Printer class by creating two Printer objects,
 * named 1 and 2, and running them concurrently.
 *
 * @version     1.1    January 24, 2000
 * @author      Franck van Breugel
 * @see Printer
 */
public class PrinterTest {

    public static void main(String[] args) {
        new Printer("1").start();
        new Printer("2").start();
    }
}