Terminal control/Inverse video: Difference between revisions

(→‎{{header|Kotlin}}: Updated example see https://github.com/dkandalov/rosettacode-kotlin for details)
Line 286:
run "tput", "sgr0";
say "normal";</lang>
=={{header|Phix}}==
<lang Phix>--
-- demo\rosetta\Inverse_Video.exw
-- ================================
--
text_color(BLACK)
bk_color(WHITE)
printf(1,"Inverse")
text_color(WHITE)
bk_color(BLACK)
printf(1," Video")
printf(1,"\n\npress enter to exit")
{} = wait_key()
</lang>
 
=={{header|PicoLisp}}==
<lang PicoLisp>(prin "abc")
7,813

edits