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

9 lines
106 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
CASE choice OF
WHEN 1
PRINT "One"
WHEN 2
PRINT "Two"
OTHERWISE
PRINT "Some other choice"
ENDCASE