RosettaCodeData/Task/Conditional-structures/Clipper/conditional-structures-2.clipper

9 lines
94 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
DO CASE
CASE x == 1
SomeFunc1()
CASE x == 2
SomeFunc2()
OTHERWISE
SomeFunc()
ENDCASE