blob: 452a4ddfb186ee84eca0b65b331d9a8bf3d65844 [file] [log] [blame]
package org.eclipse.debug.tests.targets;
public class HelloLauncher {
public static void main(String args[]) {
for (int i = 0; i < 10; i++) {
System.out.println("Hello Launcher");
}
}
}