RosettaCodeData/Task/Hello-world-Text/BabyCobol/hello-world-text.cobol
2024-03-06 22:25:12 -08:00

6 lines
271 B
COBOL

* Since no quotes are used, two undeclared fields (variables) are printed.
* Their default values are their own names in uppercase.
IDENTIFICATION DIVISION.
PROGRAM-ID. USER OUTPUT.
PROCEDURE DIVISION.
DISPLAY HELLO WORLD.