We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c4332 commit 088518eCopy full SHA for 088518e
COBOL Programming Course #2 - Learning COBOL/Labs/cbl/CBL0005.cobol
@@ -136,13 +136,13 @@
136
* paragraph of the code, executes it and returns control to
137
* the following line.
138
*
139
- PERFORM UNTIL LASTREC = 'Y'
+ PERFORM UNTIL LASTREC = 'Y'
140
* here PERFORM allows a loops to be entered
141
142
- PERFORM WRITE-RECORD
143
- PERFORM READ-RECORD
144
- END-PERFORM
145
- .
+ PERFORM WRITE-RECORD
+ PERFORM READ-RECORD
+ END-PERFORM
+ .
146
147
CLOSE-STOP.
148
CLOSE ACCT-REC.
@@ -151,7 +151,7 @@
151
152
READ-RECORD.
153
READ ACCT-REC
154
- AT END MOVE 'Y' TO LASTREC
+ AT END MOVE 'Y' TO LASTREC
155
END-READ.
156
157
WRITE-RECORD.
0 commit comments