跳过正文

目录

colored crate
#

https://crates.io/crates/colored

extern crate colored; // not needed in Rust 2018+

use colored::Colorize;

// test the example with `cargo run --example most_simple`
fn main() {
    // TADAA!
    println!("{} {} !", "it".green(), "works".blue().bold());
}

相关文章

关于我