Compound data type: Difference between revisions

Content added Content deleted
imported>Acediast
(→‎{{header|COBOL}}: added SECTION headers and forsyntax highlighting)
Line 575: Line 575:


=={{header|COBOL}}==
=={{header|COBOL}}==
<syntaxhighlight lang="cobol">
<syntaxhighlight lang="cobol"> DATA DIVISION.
WORKING-STORAGE SECTION.
01 Point.
05 x pic 9(3).
01 Point.
05 y pic 9(3).
05 x PICTURE IS 9(3).
</syntaxhighlight>
05 y PICTURE IS 9(3).</syntaxhighlight>


=={{header|CoffeeScript}}==
=={{header|CoffeeScript}}==