RosettaCodeData/Task/Conditional-structures/Harbour/conditional-structures-2.harbour
2016-12-05 23:44:36 +01:00

8 lines
94 B
Text

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