Terminal control/Inverse video: Difference between revisions

no edit summary
(→‎{{header|Wren}}: Updated to v0.4.0.)
No edit summary
Line 205:
(refresh scr)
(get-char scr)))</lang>
 
=={{header|Forth}}==
Developed with Gforth 0.7.9
<lang forth>: Reverse #27 emit "[7m" type ;
: Normal #27 emit "[m" type ; ok
 
cr reverse ." reverse " cr normal ." normal "
</lang>
 
=={{header|FunL}}==
Anonymous user