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

9 lines
106 B
Plaintext

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