fork download
  1. IDENTIFICATION DIVISION.
  2. PROGRAM-ID. SAMPLE.
  3.  
  4. ENVIRONMENT DIVISION.
  5.  
  6. DATA DIVISION.
  7. WORKING-STORAGE SECTION.
  8. 77 n PIC Z9 .
  9.  
  10. PROCEDURE DIVISION.
  11. ACCEPT n
  12. PERFORM UNTIL n = 42
  13. DISPLAY n
  14. ACCEPT n
  15. END-PERFORM
  16. STOP RUN.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cbl:    16: error: syntax error, on or before '.'
prog.cbl:    16: error: unknown or wrong statement, on or before '.'
stdout
Standard output is empty