/* JTimerExtension.java: a simple Java extension for timing things
 *
 * Copyright (c) 1998 The Regents of the University of California.
 *       All Rights Reserved.  See the COPYRIGHT file for details.
 */

package tutorial.tcltk98;
import tcl.lang.*;

public class JTimerExtension extends Extension {
  public void init (Interp interp) {
    Command cmd = new JTimerCommand();
    interp.createCommand("jtimer",cmd);
  }
}
