home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
mac
/
exsource.old
/
6_1.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
140b
|
13 lines
#
# Example 6-1
# A conditional if then else command.
#
if {$x == 0} {
puts stderr "Divide by zero!"
} else {
set slope [expr $y/$x]
}