1  public class CounterDemo
  2  {
  3     public static void main(String[] args)
  4     {
  5        Counter tally = new Counter();
  6        tally.click();
  7        tally.click();
  8        int result = tally.getValue(); // Sets result to 2
  9        System.out.print("result: ");
 10        System.out.println(result);
 11        tally.resetTo(10);
 12        tally.click();
 13        result = tally.getValue(); // Sets result to 11
 14        System.out.print("result: ");
 15        System.out.println(result);
 16     }
 17  }