RosettaCodeData/Task/Terminal-control-Inverse-video/PicoLisp/terminal-control-inverse-video.l
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

5 lines
133 B
Text

(prin "abc")
(call "tput" "rev")
(prin "def") # These three chars are displayed in reverse video
(call "tput" "sgr0")
(prinl "ghi")