RosettaCodeData/Task/Conditional-structures/Harbour/conditional-structures-2.harbour

9 lines
94 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
DO CASE
CASE x == 1
SomeFunc1()
CASE x == 2
SomeFunc2()
OTHERWISE
SomeFunc()
ENDCASE