-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path0-format.cbl
34 lines (34 loc) · 974 Bytes
/
0-format.cbl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
******************************************************************
* Author: Cristopher Bohol
* Date: March 29, 2022
* Purpose: Programming Languages Report
* Tectonics: cobc //auto-generated --- keyword to compile
******************************************************************
*AREA A
* AREA B
IDENTIFICATION DIVISION.
*Paragraph
* Entries
* Clauses
PROGRAM-ID. PL-REPORT.
ENVIRONMENT DIVISION.
*Sections
* Paragraph
* Entries
* Clauses
* Phrases
DATA DIVISION.
*Sections
* Entries
* Clauses
* Phrases
FILE SECTION.
WORKING-STORAGE SECTION.
PROCEDURE DIVISION.
MAIN-PROCEDURE.
*Sections
* Paragraphs
* Sentences
* Statements
* Phrases
END PROGRAM PL-REPORT.