I tried to print colored text to the terminal with the ANSI Escape Codes.
For example, inside a scheme session:
(display "\\033[31mAAA\\033[0m\n") (display "\\027[31mBBB\\027[0m\n") (display "\\x1b[31mCCC\\x1b[0m\n")
None of the tests worked.
Nicolas
SOLUTION:
Thanks to @jeroen and @mgubi, the solution is:
(display "\x1B[31mAAA\x1B[0m")
i.e. make the escape code an escape code …