FileDocCategorySizeDatePackage
Echo.javaAPI DocExample576Sat Jun 02 02:40:12 BST 2001None

Echo.java

// This example is from _Java Examples in a Nutshell_. (http://www.oreilly.com)
// Copyright (c) 1997 by David Flanagan
// This example is provided WITHOUT ANY WARRANTY either expressed or implied.
// You may study, use, modify, and distribute it for non-commercial purposes.
// For any commercial use, see http://www.davidflanagan.com/javaexamples

/**
 * This program prints out all its command-line arguments.
 **/
public class Echo {
  public static void main(String[] args) {
    int i = 0;                         // Initialize the loop variable
    while(i