Terminal control/Clear the screen: Difference between revisions

Scrub things without implementations
(Placeholders screw up language/example completion tracking. Have as draft for now.)
(Scrub things without implementations)
Line 1:
{{draft task}}
Clear the terminal window
 
=={{header|Ada}}==
 
=={{header|Algol68}}==
 
=={{header|awk}}==
 
<lang awk>system("clear")</lang>
 
=={{header|BASIC}}==
Line 19 ⟶ 15:
=={{header|Batch File}}==
 
CLS
 
=={{header|COBOL}}==
 
=={{header|PureBasic}}==
Line 27 ⟶ 21:
<lang PureBasic>ClearConsole()</lang>
 
=={{header|Rexx}}[[REXX]]==
 
The Rexx programming language does not include a facility to clear the screen. However, it might be possible to output ANSI control sequences, and there are various workarounds which are platform specific:
 
===[[brexx]]===
 
===[[regina]]===
 
The [[regina]] interpreter supports the [[rexxcurses]] plugin, which provides the facility to clear the screen:
 
 
=={{header|UNIX Shell}}==
 
{{works with|Bourne Shell}}
 
Anonymous user