Expression: double binary operator near is
Code: Select all
switch tValue
case is among the words "one two three"
# .. do something
break
default
# do something else
break
end switch
Code: Select all
switch
case tValue is among the words "one two three"
# .. do something
break
default
# do something else
break
end switch