RosettaCodeData/Task/Conditional-structures/BASIC/conditional-structures-3.basic

8 lines
106 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
IF x > 0 AND x < 10 THEN
'do stuff
ELSE IF x = 0 THEN
'do other stuff
ELSE
'do more stuff
END IF