7 lines
139 B
Tcl
7 lines
139 B
Tcl
if {$foo == 3} {
|
|
puts "foo is three"
|
|
} elseif {$foo == 4} {
|
|
puts "foo is four"
|
|
} else {
|
|
puts "foo is neither three nor four"
|
|
}
|