colored 2.1.0

The most simple way to add colors in your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate colored;

use colored::*;

/*
 * This example use colored strings in a nested way (at line 14). It shows that colored is able to
 * keep the correct color on the “!lalalala” part.
 */

fn main() {
    let world = "world".bold();
    let hello_world = format!("Hello, {}!", world);
    println!("{}", hello_world);
    let hello_world = format!("Hello, {}!lalalala", world).red();
    println!("{}", hello_world);
}