/* * ============================================================== * CounterTest2.java : Instantiates Counter2 class * * Adapted from : Hall M., Core Web Programming, 1997 * Modified by : Vasilios Lagakos March, 2001 * ============================================================== */ public class Counter2Test { public static void main(String[] args) { Counter2 c1 = new Counter2(5); Counter2 c2 = new Counter2(5); Counter2 c3 = new Counter2(5); } }