home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
pc
/
exsource.old
/
1_11.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
129b
|
11 lines
#
# Example 1-11
# Embedded command and variable substitution.
#
set x 7; set y 9
puts stdout $x+$y=[expr $x + $y]
#=> 7+9=16