#!/bin/env tclsh

##############################################################
#
# tcl_vars.tcl: script for extracting the values of variables 
# 		used by Tcl/Tk. Used by the setools top-level
#		makefile. Current variables extracted are:
#
#			$tcl_version
#
# Copyright (C) 2004 Tresys Technology, LLC
# see file 'COPYING' for use and warranty information 
#
##############################################################

global tcl_version

puts $tcl_version

# End of tcl script 
