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