Terminal control/Ringing the terminal bell: Difference between revisions

→‎{{header|COBOL}}: Changed to specify standard since this is a standard feature.
imported>Acediast
(→‎{{header|COBOL}}: changed to COBOL-85 since that's more descriptive)
imported>Acediast
(→‎{{header|COBOL}}: Changed to specify standard since this is a standard feature.)
Line 293:
=={{header|COBOL}}==
Using the standard screen section:
{{works with|GnuCOBOLX/Open COBOL}}
{{works with|COBOL 2002}}
<syntaxhighlight lang="cobol"> IDENTIFICATION DIVISION.
PROGRAM-ID. ring-terminal-bell.
Line 303 ⟶ 304:
PROCEDURE DIVISION.
DISPLAY ringer
GOBACKSTOP RUN.
 
END PROGRAM ring-terminal-bell.</syntaxhighlight>
Anonymous user