RosettaCodeData/Task/Conditional-structures/Comal/conditional-structures-4.comal
2016-12-05 23:44:36 +01:00

8 lines
106 B
Text

CASE choice OF
WHEN 1
PRINT "One"
WHEN 2
PRINT "Two"
OTHERWISE
PRINT "Some other choice"
ENDCASE