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

9 lines
94 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
DO CASE
CASE x == 1
SomeFunc1()
CASE x == 2
SomeFunc2()
OTHERWISE
SomeFunc()
ENDCASE