blob: 8d82ededf910c654af3b778dc427d4794638af3f [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 HelloLauncher {
public static void main(String args[]) {
for (int i = 0; i < 10; i++) {
System.out.println("Hello Launcher");
}
}
}