Jump to content

Terminal control/Hiding the cursor: Difference between revisions

PascalABC.NET
m (→‎{{header|Wren}}: Changed to Wren S/H)
(PascalABC.NET)
 
Line 215:
<syntaxhighlight lang="furor">
cursoron
</syntaxhighlight>
 
=={{header|PascalABC.NET}}==
<syntaxhighlight lang="delphi">
uses CRT;
 
begin
GotoXY(60,15);
Print('PascalABC.NET');
HideCursor;
Sleep(1000);
ShowCursor;
Sleep(1000);
end.
</syntaxhighlight>
 
218

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.