Terminal control/Hiding the cursor: Difference between revisions

Content added Content deleted
({{omit from|ZX Spectrum Basic}})
({{header|Locomotive Basic}})
Line 1: Line 1:
{{task|Terminal control}}[[Category:Terminal Control]]
{{task|Terminal control}}[[Category:Terminal Control]]

The task is to hide the cursor and show it again.
The task is to hide the cursor and show it again.

=={{header|Locomotive Basic}}==
<lang basic>10 CURSOR 0: REM hide cursor
20 FOR l = 1 TO 2000: REM delay
30 NEXT l
40 CURSOR 1: REM show cursor</lang>


=={{header|PicoLisp}}==
=={{header|PicoLisp}}==