colorful-cli 0.1.0

Colorize English prose by part of speech in the terminal (ANSI).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The `colorful` binary: color English prose by part of speech in the terminal.

use std::process::ExitCode;

fn main() -> ExitCode {
    match colorful_cli::run(std::env::args().skip(1)) {
        Ok(()) => ExitCode::SUCCESS,
        Err(err) => {
            eprintln!("colorful: {err}");
            ExitCode::FAILURE
        }
    }
}