blob: 84cc539fc6b83ad79fcff6d23dfde5b11da4f3dc [file] [log] [blame]
package org.eclipse.debug.tests.targets;
public class Looper {
public void loop() {
int i = 0;
while (true) {
System.out.println("Loop " + i);
i++;
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
}
}