1 2 3 4 5 6 7 8 9 10 11 12 13 14
use cod::prelude::*; fn main() { let _g = guard::Reset; style::bold(); print!("This is "); style::with::italic(|| { print!("italic and bold text"); }); println!(", but this is just bold."); }