blob: 90c88599d0a7f5b01d1969215fd6734a0e379f17 [file] [log] [blame]
package org.eclipse.debug.tests.targets;
/**********************************************************************
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 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) {
}
}
}
}