Artifact [1709792788]
Not logged in

Artifact 170979278839f905ea960d3be581a76179589732:


/*
 *  Test3.java
 *
 * Copyright (c) 1997 Sun Microsystems, Inc.
 *
 * See the file "license.terms" for information on usage and
 * redistribution of this file, and for a DISCLAIMER OF ALL
 * WARRANTIES.
 * 
 * RCS: @(#) $Id: Test3Cmd.java,v 1.1 2006/01/31 00:49:21 mdejong Exp $
 *
 */

package tests.javaload;

import tcl.lang.*;

public class
Test3Cmd implements Command {
    public void cmdProc(Interp interp, TclObject argv[]) throws TclException {
	interp.setResult("test works");
    }
}