Terminal control/Hiding the cursor: Difference between revisions

Added Wren
(Added Wren)
Line 470:
sleep 5 # Sleep for 5 seconds
tput cnorm # Show the cursor</lang>
 
=={{header|Wren}}==
{{trans|Go}}
<lang ecmascript>import "timer" for Timer
 
System.print("\x1b[?25l")
Timer.sleep(3000)
System.print("\x1b[?25h")
Timer.sleep(3000)</lang>
 
=={{header|XPL0}}==
9,482

edits