Skip to content

Commit 98f7e5e

Browse files
authored
Merge pull request #65 from openmainframeproject/paulnewt-patch-1
Update COBOL Programming with VSCode.md
2 parents 8065086 + 68efea5 commit 98f7e5e

File tree

1 file changed

+34
-34
lines changed

1 file changed

+34
-34
lines changed

COBOL Programming with VSCode.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -15,37 +15,37 @@ The publication is structured as follows:
1515

1616
[Chapter 1. Why COBOL?](#Chapter-1-Why-COBOL)
1717

18-
[Chapter 2. VSCode with Z Open Editor and ZOWE extensions](#-2.-VSCode-with-Z-Open-Editor-and-ZOWE-extensions)
18+
[Chapter 2. VSCode with Z Open Editor and ZOWE extensions](#Chapter-2-VSCode-with-Z-Open-Editor-and-ZOWE-extensions)
1919

20-
[Chapter 3. Installation of VSCode and extensions](#-3.-Installation-of-VSCode-and-extensions)
20+
[Chapter 3. Installation of VSCode and extensions](#Chapter-3-Installation-of-VSCode-and-extensions)
2121
### Part 2 - Learning COBOL
2222

23-
[Chapter 4. Basic COBOL](#-4.-Basic-COBOL)
23+
[Chapter 4. Basic COBOL](#Chapter-4-Basic-COBOL)
2424

25-
[Chapter 5. Data division](#-5.-Data-division)
25+
[Chapter 5. Data division](#Chapter-5-Data-division)
2626

27-
[Chapter 6. File handling](#-6.-File-handling)
27+
[Chapter 6. File handling](#Chapter-6-File-handling)
2828

29-
[Chapter 7. Program structure](#-7.-Program-structure)
29+
[Chapter 7. Program structure](#Chapter-7-Program-structure)
3030

31-
[Chapter 8. File output](#-8.-File-output)
31+
[Chapter 8. File output](#Chapter-8-File-output)
3232

33-
[Chapter 9. Conditional expressions](#-9.-Conditional-expressions)
33+
[Chapter 9. Conditional expressions](#Chapter-9-Conditional-expressions)
3434

35-
[Chapter 10. Arithmetic expressions](#-10.-Arithmetic-expressions)
35+
[Chapter 10. Arithmetic expressions](#Chapter-10-Arithmetic-expressions)
3636

37-
[Chapter 11. Data types](#-11.-Data-types)
37+
[Chapter 11. Data types](#Chapter-11-Data-types)
3838

39-
[Chapter 12. Intrinsic functions](#-12.-Intrinsic-functions)
39+
[Chapter 12. Intrinsic functions](#Chapter-12-Intrinsic-functions)
4040
### Part 3 - VSCode alternatives and testing
4141

42-
[Chapter 13. Installing IBM Developer for Z](#-13.-Installing-IBM-Developer-for-Z)
42+
[Chapter 13. Installing IBM Developer for Z](#Chapter-13-Installing-IBM-Developer-for-Z)
4343

44-
[Chapter 14. Enabling IBM Developer for Z to work with COBOL](#-14.-Enabling-IBM-Developer-for-Z-to-work-with-COBOL)
44+
[Chapter 14. Enabling IBM Developer for Z to work with COBOL](#Chapter-14-Enabling-IBM-Developer-for-Z-to-work-with-COBOL)
4545

46-
[Chapter 15. Using ISPF to work with COBOL](#-15.-Using-ISPF-to-work-with-COBOL)
46+
[Chapter 15. Using ISPF to work with COBOL](#Chapter-15-Using-ISPF-to-work-with-COBOL)
4747

48-
[Chapter 16. Testing](#-16.-Testing)
48+
[Chapter 16. Testing](#Chapter-16-Testing)
4949

5050

5151
## Authors
@@ -82,9 +82,9 @@ Left-to-right: Ilicena, Suzy, Makenzie, Martin, Paul, and Tak
8282

8383
### [Chapter 1. Why COBOL?](#1-Why-COBOL)
8484

85-
### [Chapter 2. VSCode with Z Open Editor and ZOWE extensions](#2.-VSCode-with-Z-Open-Editor-and-ZOWE-extensions)
85+
### [Chapter 2. VSCode with Z Open Editor and ZOWE extensions](#2-VSCode-with-Z-Open-Editor-and-ZOWE-extensions)
8686

87-
### [Chapter 3. Installation of VSCode and extensions](#3.-Installation-of-VSCode-and-extensions)
87+
### [Chapter 3. Installation of VSCode and extensions](#3-Installation-of-VSCode-and-extensions)
8888

8989
# 1. Why COBOL?
9090

@@ -505,23 +505,23 @@ In this chapter you have been introduced to VSCode and some of the extension too
505505

506506
# Part 2 - Learning COBOL
507507

508-
### [Chapter 4. Basic COBOL](#4.-Basic-COBOL)
508+
### [Chapter 4. Basic COBOL](#4-Basic-COBOL)
509509

510-
### [Chapter 5. Data division](#5.-Data-division)
510+
### [Chapter 5. Data division](#5-Data-division)
511511

512-
### [Chapter 6. File handling](#6.-File-handling)
512+
### [Chapter 6. File handling](#6-File-handling)
513513

514-
### [Chapter 7. Program structure](#7.-Program-structure)
514+
### [Chapter 7. Program structure](#7-Program-structure)
515515

516-
### [Chapter 8. File output](#8.-File-output)
516+
### [Chapter 8. File output](#8-File-output)
517517

518-
### [Chapter 9. Conditional expressions](#9.-Conditional-expressions)
518+
### [Chapter 9. Conditional expressions](#9-Conditional-expressions)
519519

520-
### [Chapter 10. Arithmetic expressions](#10.-Arithmetic-expressions)
520+
### [Chapter 10. Arithmetic expressions](#10-Arithmetic-expressions)
521521

522-
### [Chapter 11. Data types](#11.-Data-types)
522+
### [Chapter 11. Data types](#11-Data-types)
523523

524-
### [Chapter 12. Intrinsic functions](#12.-Intrinsic-functions)
524+
### [Chapter 12. Intrinsic functions](#12-Intrinsic-functions)
525525

526526

527527
# 4. Basic COBOL
@@ -2344,15 +2344,15 @@ WORKING-STORAGE.
23442344
PROCEDURE DIVISION.
23452345
....
23462346
....
2347-
MOVE 'AZ' TO STATE.
2347+
MOVE 'AZ' TO USA-STATE.
23482348
....
23492349
....
23502350
IF STATE DISPLAY 'The State is Texas'
23512351
ELSE DISPLAY 'The State is not Texas'
23522352
END-IF.
23532353
....
23542354
....
2355-
MOVE 'TX' TO STATE.
2355+
MOVE 'TX' TO USA-STATE.
23562356
....
23572357
....
23582358
IF STATE DISPLAY 'The State is Texas'
@@ -2374,15 +2374,15 @@ WORKING-STORAGE.
23742374
PROCEDURE DIVISION.
23752375
....
23762376
....
2377-
MOVE 'AZ' TO USA-STATE.
2377+
MOVE 'AZ' TO STATE.
23782378
....
23792379
....
23802380
IF STATE = 'TX' DISPLAY 'The State is Texas'
23812381
ELSE DISPLAY 'The State is not Texas'
23822382
END-IF.
23832383
....
23842384
....
2385-
MOVE 'TX' TO USA-STATE.
2385+
MOVE 'TX' TO STATE.
23862386
....
23872387
....
23882388
IF STATE = 'TX' DISPLAY 'The State is Texas'
@@ -3181,13 +3181,13 @@ Refer to CBL0011 line 120 for the proper formatting of the function-name causing
31813181

31823182
# Part 3 - VSCode alternatives and testing
31833183

3184-
### [Chapter 13. Installing IBM Developer for Z](#13.-Installing-IBM-Developer-for-Z)
3184+
### [Chapter 13. Installing IBM Developer for Z](#13-Installing-IBM-Developer-for-Z)
31853185

3186-
### [Chapter 14. Enabling IBM Developer for Z to work with COBOL](#14.-Enabling-IBM-Developer-for-Z-to-work-with-COBOL)
3186+
### [Chapter 14. Enabling IBM Developer for Z to work with COBOL](#14-Enabling-IBM-Developer-for-Z-to-work-with-COBOL)
31873187

3188-
### [Chapter 15. Using ISPF to work with COBOL](#15.-Using-ISPF-to-work-with-COBOL)
3188+
### [Chapter 15. Using ISPF to work with COBOL](#15-Using-ISPF-to-work-with-COBOL)
31893189

3190-
### [Chapter 16. Testing](#-16.-Testing)
3190+
### [Chapter 16. Testing](#16-Testing)
31913191

31923192

31933193

0 commit comments

Comments
 (0)