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 3de10c7 commit f340eddCopy full SHA for f340edd
COBOL Programming Course #2 - Learning COBOL/Labs/cbl/CBL0001.cobol
@@ -71,10 +71,10 @@
71
* and the call to WRITE-RECORD depend on READ-RECORD having
72
* been executed before.
73
* The loop starts at the next line with PERFORM UNTIL
74
- PERFORM UNTIL LASTREC = 'Y'
75
- PERFORM WRITE-RECORD
76
- PERFORM READ-RECORD
77
- END-PERFORM
+ PERFORM UNTIL LASTREC = 'Y'
+ PERFORM WRITE-RECORD
+ PERFORM READ-RECORD
+ END-PERFORM
78
.
79
*
80
CLOSE-STOP.
@@ -84,7 +84,7 @@
84
85
READ-RECORD.
86
READ ACCT-REC
87
- AT END MOVE 'Y' TO LASTREC
+ AT END MOVE 'Y' TO LASTREC
88
END-READ.
89
90
WRITE-RECORD.
0 commit comments