Terminal control/Hiding the cursor: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
(Added PicoLisp)
Line 3: Line 3:


[[Category:Terminal Control]]
[[Category:Terminal Control]]

=={{header|PicoLisp}}==
<lang PicoLisp>(call "tput" "civis") # Invisible
(wait 1000)
(call "tput" "cvvis") # Visible</lang>

Revision as of 16:23, 25 November 2010

Terminal control/Hiding the cursor is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

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

PicoLisp

<lang PicoLisp>(call "tput" "civis") # Invisible (wait 1000) (call "tput" "cvvis") # Visible</lang>