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