Hello world/Text: Difference between revisions

→‎{{header|BabyCobol}}: remove stray space
(→‎{{header|BabyCobol}}: remove stray space)
Line 669:
=={{header|BabyCobol}}==
<syntaxhighlight lang="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.
</syntaxhighlight>
 
18

edits