Terminal control/Clear the screen: Difference between revisions

Content added Content deleted
No edit summary
(Added Algol 68)
Line 169: Line 169:
Ada.Text_IO.Put(ASCII.ESC & "[2J");
Ada.Text_IO.Put(ASCII.ESC & "[2J");
end CLS;</lang>
end CLS;</lang>

=={{header|ALGOL 68}}==
{{works with|ALGOL 68G|Any - tested with release 2.8.3.win32}}
Uses the Algol 68G interface to the curses library.
<lang algol68>curses start; # needed before any screen clearing, positioning etc. #
curses clear # clear the screen #</lang>


=={{header|ARM Assembly}}==
=={{header|ARM Assembly}}==