01: /*
02: * PrintArgs.java --
03: *
04: * jacl/tests/exec/PrintArgs.java
05: *
06: * Copyright (c) 1998 by Moses DeJong
07: *
08: * See the file "license.terms" for information on usage and redistribution
09: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
10: *
11: * RCS: @(#) $Id: PrintArgs.java,v 1.1 1999/05/10 04:09:05 dejong Exp $
12: *
13: */
14:
15: package tests.exec;
16:
17: public class PrintArgs {
18: public static void main(String[] argv) {
19: for (int i = 0; i < argv.length; i++) {
20: System.out.println(argv[i]);
21: }
22: System.exit(0);
23: }
24: }
|