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

7 lines
106 B
Text

IF x > 0 AND x < 10 THEN
'do stuff
ELSE IF x = 0 THEN
'do other stuff
ELSE
'do more stuff
END IF