Terminal control/Hiding the cursor: Difference between revisions

(Added C)
(→‎{{header|XPL0}}: Added zkl)
Line 305:
ShowCur(true); \turn on flashing cursor
]</lang>
 
=={{header|zkl}}==
{{trans|Go}}
Hide the cursor for three seconds on an ANSI terminal
<lang zkl>print("\e[?25l");
Atomic.sleep(3);
print("\e[?25h");</lang>
 
{{omit from|ACL2}}
Anonymous user