blob: ec9ffb8c1f3242b0338f092cb68e232f5c2bbb57 [file] [log] [blame]
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v0.5
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v05.html
Contributors:
IBM Corporation - Initial implementation
**********************************************************************/
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) {
}
}
}
}