How to print a string in COBOL

1 Answer

0 votes
IDENTIFICATION DIVISION.
program-id. COBOL_PRO.
PROCEDURE DIVISION.
 
DISPLAY "COBOL".
STOP RUN.
 
 
 
*> run:
*>
*> COBOL
*>

 



answered Sep 16, 2020 by avibootz
edited Oct 26, 2024 by avibootz
...