01: /*
02: * ExecNoErr2.java --
03: *
04: * jacl/tests/exec/ExecNoErr2.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: ExecNoErr2.java,v 1.1 1999/05/10 04:09:04 dejong Exp $
12: *
13: */
14:
15: package tests.exec;
16:
17: public class ExecNoErr2 {
18: public static void main(String[] argv) {
19: System.out.println("!stdout!");
20: System.exit(0);
21: }
22: }
|