mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Typo in cobol tutorial : DIVSION -> DIVISION
See https://duckduckgo.com/?t=canonical&q=IDENTIFICATION+DIVSION+COBOL&ia=web
This commit is contained in:
parent
325ebb8543
commit
2c650474f6
@ -29,7 +29,7 @@ organizations.
|
||||
|
||||
*COBOL code is broken up into 4 divisions.
|
||||
*Those divisions, in order, are:
|
||||
*IDENTIFICATION DIVSION.
|
||||
*IDENTIFICATION DIVISION.
|
||||
*ENVIRONMENT DIVISION.
|
||||
*DATA DIVISION.
|
||||
*PROCEDURE DIVISION.
|
||||
@ -75,7 +75,7 @@ organizations.
|
||||
DATA DIVISION.
|
||||
WORKING-STORAGE SECTION.
|
||||
01 THE-MESSAGE PIC X(20).
|
||||
PROCEDURE DIVSION.
|
||||
PROCEDURE DIVISION.
|
||||
DISPLAY "STARTING PROGRAM".
|
||||
MOVE "HELLO WORLD" TO THE-MESSAGE.
|
||||
DISPLAY THE-MESSAGE.
|
||||
|
Loading…
Reference in New Issue
Block a user