Terminal control/Hiding the cursor: Difference between revisions

Terminal control/Hiding the cursor in True BASIC
(Terminal control/Hiding the cursor in True BASIC)
Line 105:
T%=TIME+400:REPEAT UNTIL TIME>T%
VDU 23,1,1;0;0;0; : REM Show the cursor again</syntaxhighlight>
 
==={{header|True BASIC}}===
<syntaxhighlight lang="qbasic">SET CURSOR "off"
PAUSE 2 !Pause 2 seconds
SET CURSOR "on"
END</syntaxhighlight>
 
=={{header|Befunge}}==
2,169

edits