Hello world/Text: Difference between revisions

(fix)
Line 668:
 
=={{header|BabyCobol}}==
<syntaxhighlight lang="babycobolcobol">DISPLAY HELLO WORLD</syntaxhighlight>
In this example, since * Since no quotes are used, two undeclared fields (variables) are printed, but their default values are their own names in uppercase.
* Their default values are their own names in uppercase.
IDENTIFICATION DIVISION.
PROGRAM-ID. USER OUTPUT.
PROCEDURE DIVISION.
DISPLAY HELLO WORLD.
</syntaxhighlight>
 
=={{header|Bait}}==
18

edits