I'd like to control the color of the text displayed in Common Lisp. Something like this pseudo-code:
(print-color (:red "hello") (:blue "world"))
Is there any way this can be done? I use SBCL and my repl is inside emacs. Thanks!
I'd like to control the color of the text displayed in Common Lisp. Something like this pseudo-code:
(print-color (:red "hello") (:blue "world"))
Is there any way this can be done? I use SBCL and my repl is inside emacs. Thanks!
You can use ANSI escape code to print colorful texts:
I'm not sure whether this works in slime, although.