1
2
3
4
5
6
7
8
9
10
11
12
13
use unicode_icons::{checkmarks, copyright, flags};

fn main() {
    println!("Default Checkmark: {}", checkmarks::default()); // output: ✓

    // somehow I have rendering issues if there is no whitespace
    println!("White Heavy Checkmark: {} ", checkmarks::white_heavy()); // output: ✅

    println!("Rainbow Flag: {} ", flags::rainbow());
    println!("pirate_flag: {} ", flags::pirate());
    println!("pirate_flag: {} ", flags::triangular());
    println!("copyright default: {} ", copyright::default());
}