Terminal control/Hiding the cursor: Difference between revisions

Added Befunge example.
(→‎{{header|REXX}}: added the REXX language.)
(Added Befunge example.)
Line 39:
WAIT 400
ON : REM Show the cursor again</lang>
 
=={{header|Befunge}}==
Assuming a terminal with support for ANSI escape sequences, this hides the cursor, waits for the user to press ''Enter'', and then shows the cursor again.
<lang befunge>"l52?["39*,,,,,, >v
"retnE sserP">:#,_v>
"h52?["39*,,,,,,@ >~</lang>
 
=={{header|C}}==
Anonymous user