//! The `colorful` binary: color English prose by part of speech in the terminal.
usestd::process::ExitCode;fnmain()-> ExitCode{matchcolorful_cli::run(std::env::args().skip(1)){Ok(())=>ExitCode::SUCCESS,Err(err)=>{eprintln!("colorful: {err}");ExitCode::FAILURE}}}