home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
mac
/
exsource.old
/
1_10.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
268b
|
14 lines
#
# Example 1-10
# Grouping with double quotes vs. braces.
#
set s Hello
#=> Hello
puts stdout "The length of $s is [string length $s]."
#=> The length of Hello is 5.
puts stdout {The length of $s is [string length $s].}
#=> The length of $s is [string length $s].