Terminal control/Hiding the cursor: Difference between revisions

Added Quackery.
m (→‎{{header|Phix}}: added syntax colouring the hard way)
(Added Quackery.)
Line 408:
curses.endwin()
</lang>
 
=={{header|Quackery}}==
 
{{trans|Python}}
 
 
On some platforms the cursor visibility will not change until the output buffer is flushed by for example a cr/lf.
 
<lang Quackery> [ $ &print("\x1b[?25l",end='')& python ] is hide ( --> )
 
[ $ &print("\x1b[?25h",end='')& python ] is show ( --> )</lang>
 
=={{header|Racket}}==
1,462

edits