Terminal control/Hiding the cursor

From Rosetta Code
Revision as of 16:23, 25 November 2010 by rosettacode>Abu (Added PicoLisp)
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>