1 2 3 4 5 6 7 8
use utility_macros::repeat_char; fn main() { let dashes = repeat_char!('-', 16); println!("{dashes}\n Hello world!\n{dashes}"); }