summaryrefslogtreecommitdiffstats
path: root/vendor/colored/examples/nested_colors.rs
blob: de1124916173ecae160b1307507c723f84d5aa4c (plain)
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);
}