If loop
For loop
if { test1 } {
body1
} elseif { test2 } {
body2
} else {
bodyn
}
For loop
for { set i 1 } { $i <= 10 } { incr i } {
# This will append all multiples of all numbers for the number n
# into a variable called table
set table "$table $i x $n = [expr $i \* $n]\n"
}
Foreach loop
#Make the list set list [list "Item 1" {Item 2} Last] set text "" foreach item $list { #Append the every item to $text set text "$text\n$item" }
#Make the list
set list [list "Item 1" {Item 2} Last]
set text ""
foreach item $list {
#Append the every item to $text
set text "$text\n$item"
}
No comments:
Post a Comment