Terminal control/Clear the screen: Difference between revisions

(Add lang example)
Line 761:
 
=={{header|Furor}}==
<syntaxhighlight lang="gofuror">
cls
</syntaxhighlight>
Yet another solution:
<syntaxhighlight lang="gofuror">
."\z"
</syntaxhighlight>
 
=={{header|Peri}}==
 
<syntaxhighlight lang="peri">
###sysinclude system.uh
cls
</syntaxhighlight>
Yet another solution:
<syntaxhighlight lang="peri">
."\z"
</syntaxhighlight>
 
=={{header|Go}}==