RosettaCodeData/Task/Flow-control-structures/COBOL/flow-control-structures-3.cobol

14 lines
318 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
EVALUATE Thing-To-Do
WHEN 1
* *> Do first thing...
WHEN 2
* *> Do second thing...
WHEN 3
* *> Do third thing...
WHEN OTHER
* *> Handle invalid thing...
END-EVALUATE