home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / cobol / compiler / cobol600 / two.cob < prev    next >
Text File  |  1990-04-30  |  256b  |  10 lines

  1.        IDENTIFICATION DIVISION.
  2.        PROGRAM-ID. TWO.
  3.        ENVIRONMENT DIVISION.
  4.        DATA DIVISION.
  5.        WORKING-STORAGE SECTION.
  6.         PROCEDURE DIVISION.
  7.         01-START.
  8.             CALL 'TEST1' .
  9.             STOP RUN.
  10.