RosettaCodeData/Task/Conditional-structures/BASIC/conditional-structures-5.basic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

12 lines
164 B
Text

SELECT CASE expression
CASE 1
'do stuff
CASE 2, 3
'do other stuff
CASE 3.1 TO 9.9
'do this
CASE IS >= 10
'do that
CASE ELSE
'default case
END SELECT