I'm trying to print colored text in the shell/REPL according to the ANSI sequence elements (http://en.wikipedia.org/wiki/ANSI_escape_code#Colors). Is there any way to format UNIX colored strings like the following?
colorize("Hello", "red", "yellow")
Raw string:
*[4;33;41mHello[0m*
Visual output:
*Hello*
