summaryrefslogtreecommitdiff
path: root/examples/simple.rs
blob: b3e5582ec096dab0230299232e6e0800d082bc69 (plain)
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}");
}