Hello world/Text: Difference between revisions

Content added Content deleted
(→‎{{header|BabyCobol}}: remove stray space)
Line 669: Line 669:
=={{header|BabyCobol}}==
=={{header|BabyCobol}}==
<syntaxhighlight lang="cobol">
<syntaxhighlight lang="cobol">
* Since no quotes are used, two undeclared fields (variables) are printed.
* Since no quotes are used, two undeclared fields (variables) are printed.
* Their default values are their own names in uppercase.
* Their default values are their own names in uppercase.
IDENTIFICATION DIVISION.
IDENTIFICATION DIVISION.
PROGRAM-ID. USER OUTPUT.
PROGRAM-ID. USER OUTPUT.
PROCEDURE DIVISION.
PROCEDURE DIVISION.
DISPLAY HELLO WORLD.
DISPLAY HELLO WORLD.
</syntaxhighlight>
</syntaxhighlight>