home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
cobol
/
compiler
/
cobol600
/
two.cob
< prev
next >
Wrap
Text File
|
1990-04-30
|
256b
|
10 lines
IDENTIFICATION DIVISION.
PROGRAM-ID. TWO.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
PROCEDURE DIVISION.
01-START.
CALL 'TEST1' .
STOP RUN.