RosettaCodeData/Task/Conditional-structures/Comal/conditional-structures-4.comal
2023-07-01 13:44:08 -04:00

8 lines
106 B
Text

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