blob: 8936cec1e51c8c363f9c8d40d41339a74bbd901f [file] [log] [blame]
public class HitCountLooper {
public static void main(String[] args) {
int i = 0;
while (i < 20) {
System.out.println("Main Looping " + i);
i++;
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
}
}
}