Skip to content

Commit 30a554f

Browse files
committed
FIX java pseudo code for PERFORM VARYING example
The Java-Pseudo-Code for the ```PERFORM VARYING``` example had some logical errors. Signed-off-by: Julian Picht <[email protected]>
1 parent 6a71dec commit 30a554f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

COBOL Programming with VSCode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2195,7 +2195,7 @@ This may seem complex, but compare it to this Java pseudo-code:
21952195

21962196
```
21972197
for(int counter = 0; counter < 11; counter++){
2198-
for(int counter-2 = 0; counter < 5; counter++{
2198+
for(int counter2 = 0; counter2 < 5; counter2++{
21992199
//move counter to msg-to-write
22002200
//write print-rec
22012201
}

0 commit comments

Comments
 (0)