1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-14 02:34:17 +02:00

Fix comments not getting recognized

Looks like the vertical alignment in one section was causing the comments to not be recognized
This commit is contained in:
Andrew Ryan Davis
2020-08-09 14:52:43 -07:00
committed by GitHub
parent 36d86cd4d4
commit f19bab44fb

View File

@@ -53,7 +53,8 @@ organizations.
*example: *example:
01 MYNAME PIC xxxxxxxxxx. *> A 10 character string. 01 MYNAME PIC xxxxxxxxxx. *> A 10 character string.
*But counting all those x's can lead to errors, so the above code can, and should, *But counting all those x's can lead to errors,
*so the above code can, and should
*be re-written as: *be re-written as:
01 MYNAME PIC X(10). 01 MYNAME PIC X(10).
@@ -105,7 +106,7 @@ organizations.
PROCEDURE DIVISION. PROCEDURE DIVISION.
FIRST-PARA. FIRST-PARA.
DISPLAY 'THIS IS IN FIRST-PARA'. DISPLAY 'THIS IS IN FIRST-PARA'.
PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip over second-para and perfrom 3rd & 4th PERFORM THIRD-PARA THRU FOURTH-PARA. *>skip second-para and perfrom 3rd & 4th
*> then after performing third and fourth, *> then after performing third and fourth,
*> return here and continue the program until STOP RUN. *> return here and continue the program until STOP RUN.