RosettaCodeData/Task/Conditional-structures/Clipper/conditional-structures-2.clipper
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

8 lines
94 B
Text

DO CASE
CASE x == 1
SomeFunc1()
CASE x == 2
SomeFunc2()
OTHERWISE
SomeFunc()
ENDCASE