#!/bin/sh
#
#  This is a start up script for the Tk/Tcl widget tour.
#
#  Andrew Payne
#  payne@crl.dec.com
#

	WISH=/afs/net.mit.edu/project/tcl/wish
	if test ! -r "$WISH"
	then
		WISH=wish
	fi

export WISH
$WISH -f /afs/athena.mit.edu/course/other/cdsdev/scripts/wtour.dir/lib/wtour.tcl /afs/athena.mit.edu/course/other/cdsdev/scripts/wtour.dir/lessons
