How to perform 'Exit Program' in COBOL.
* Task: Exit Program
* Language: COBOL
PROCEDURE DIVISION. exit_program()
* Implementation for Exit Program
* TODO: Implement core logic here
* Step 1: Prepare data
* Step 2: Process Exit Program
DISPLAY("Done");
STOP RUN.