RuntimeCounter.java 162 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 package edu.caltech.cs2.helpers; public class RuntimeCounter { public static int NUM_CALLS = 0; public static void inc() { NUM_CALLS++; } }