1 2 3 4 5
use colored::Colorize; pub fn error(string: &str) { print!("{} {}", "Err:".red().bold(), string); }