Terminal control/Hiding the cursor: Difference between revisions

Added Arturo implementation
(Added Arturo implementation)
Line 2:
 
The task is to hide the cursor and show it again.
 
=={{header|Arturo}}==
 
<lang rebol>cursor false
print "hiding the cursor"
 
pause 2000
 
cursor true
print "showing the cursor"</lang>
 
=={{header|AutoHotkey}}==
1,532

edits