Terminal control/Clear the screen: Difference between revisions

Content added Content deleted
Line 95: Line 95:
<lang lua>os.execute( "clear" )</lang>
<lang lua>os.execute( "clear" )</lang>
will not work because "clear" is not a command
will not work because "clear" is not a command

=={{header|Mathematica}}==
Delegating to clear on terminal enabled OS(Mac Os, Linux)
<lang Mathematica>Run["clear"];</lang>


=={{header|Pascal}}==
=={{header|Pascal}}==