RosettaCodeData/Task/Conditional-structures/Comal/conditional-structures-4.comal

9 lines
106 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
CASE choice OF
WHEN 1
PRINT "One"
WHEN 2
PRINT "Two"
OTHERWISE
PRINT "Some other choice"
ENDCASE