home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
pc
/
exsource
/
6_12.tcl
< prev
next >
Wrap
Text File
|
2003-04-16
|
191b
|
14 lines
#
# Example 6-12
# Multiple value lists with foreach.
#
foreach {k1 k2} {orange blue red green black} value {55 72 24} {
puts "$k1 $k2: $value"
}
orange blue: 55
red green: 72
black : 24