Terminal control/Hiding the cursor: Difference between revisions

Content added Content deleted
(Terminal control/Hiding the cursor in True BASIC)
(Terminal control/Hiding the cursor in FreeBASIC)
Line 228: Line 228:
cursoron
cursoron
</syntaxhighlight>
</syntaxhighlight>

=={{header|FreeBASIC}}==
<syntaxhighlight lang="vb">Locate , , 0 'Hide the cursor

Sleep 500 'waiting half second or a keypress...

Locate , , 1 'Show the cursor again

Sleep</syntaxhighlight>


=={{header|Go}}==
=={{header|Go}}==