blob: b5cedb1ee6241b8d7ebcfaf8501ecffb7e66d5e6 [file] [log] [blame]
package org.eclipse.debug.tests.targets;
public class InfiniteLoop {
public static void main(String[] args) {
(new InfiniteLoop()).loop();
}
public void loop() {
int i = 0;
while (true) {
System.out.println("Looping " + i);
i++;
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
}
}