RosettaCodeData/Task/Conditional-structures/Tcl/conditional-structures-1.tcl
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

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"
}