#color
Color module for Hare to output colored and formatted text to the
terminal using standard ANSI escape sequences. Inspired by chalk.js
and Go Colors.
use fmt;
use color;
export fn main() void = {
fmt::println(color::underline(color::red("Hello, world!")))!;
};
