use utility_macros::repeat_char; fn main() { let dashes = repeat_char!('-', 16); println!("{dashes}\n Hello world!\n{dashes}"); }