Terminal control/Hiding the cursor: Difference between revisions

(Add BaCon)
Line 41:
 
=={{header|BBC BASIC}}==
32-bit BBC BASICs:
<lang bbcbasic> OFF : REM Hide the cursor (caret)
WAIT 400
ON : REM Show the cursor again</lang>
All BBC BASICs:
<lang bbcbasic> VDU 23,1,0;0;0;0; : REM Hide the cursor
T%=TIME+400:REPEAT UNTIL TIME>T%
VDU 23,1,1;0;0;0; : REM Show the cursor again</lang>
 
=={{header|Befunge}}==
Anonymous user