5 lines
117 B
Tcl
5 lines
117 B
Tcl
switch -- $foo {
|
|
3 {puts "foo is three"}
|
|
4 {puts "foo is four"}
|
|
default {puts "foo is something else"}
|
|
}
|