<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class MethodBenchmark extends Benchmark {
    
    public void benchmark() {
    }
    
    public static void main(String[] args) {
	int count = Integer.parseInt(args [0]);
	
	long time = new MethodBenchmark().repeat(count);
	System.out.println(count + " methods in " + time + " milliseconds.");
    }
}
</pre></body></html>