FileDocCategorySizeDatePackage
Launcher.javaAPI DocExample620Mon Mar 29 16:31:44 BST 2004org.cookbook.ch04

Launcher

public class Launcher extends Object
author
Steven Holzner To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

		String text ="";
		for (int loopIndex = 0; loopIndex <args.length; loopIndex++){
			text += args[loopIndex] + " ";
		}
		
		System.out.println(text);