RosettaCodeData/Task/Flow-control-structures/COBOL/flow-control-structures-3.cobol
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

13 lines
318 B
COBOL

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