incredimo 0.1.17

just another font for your terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
use incredimo::Banner;
fn main() {
    println!();
    let banner = Banner::new("IMPOSSIBLE")
    .with_colors()
    .with_subtitle("IMPOSSIBLE IS JUST A CHALLENGE YET TO BE SOLVED")
    .with_line_length(80)
    .build()
    .unwrap();
    println!("{}", banner.render());
}