1use stylic::{Style, Styleable};
2
3fn main() {
4 let my_style = Style::new().bold().blue();
5
6 println!("{}!", "Hello".styled_with(my_style));
7
8 println!(
9 "{}",
10 "Rust Language"
11 .styled_with(my_style)
12 .link("https://rust-lang.org")
13 );
14}