6 lines
112 B
Plaintext
6 lines
112 B
Plaintext
|
IDENTIFICATION DIVISION.
|
||
|
PROGRAM-ID. HELLOWORLD.
|
||
|
|
||
|
PROCEDURE DIVISION.
|
||
|
DISPLAY "Hello World in COBOL!".
|
||
|
STOP RUN.
|