Compound data type: Difference between revisions

→‎{{header|COBOL}}: added SECTION headers and forsyntax highlighting
imported>Acediast
(→‎{{header|COBOL}}: added SECTION headers and forsyntax highlighting)
Line 575:
 
=={{header|COBOL}}==
<syntaxhighlight lang="cobol"> DATA DIVISION.
WORKING-STORAGE SECTION.
01 Point.
05 x 01 pic 9(3)Point.
05 y 05 x PICTURE picIS 9(3).
05 y PICTURE IS 9(3).</syntaxhighlight>
 
=={{header|CoffeeScript}}==
Anonymous user