swears 0.1.16

Use swears, not curses
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use swears::{Colorize, Terminal};

fn main() {
    let term = Terminal::with_color();
    term.disable_echo();
    term.enable_scrolling();

    for n in 0..100 {
        term.println(format!("Testing: {}", n).red());
    }
    
    term.println("Press any key to exit");
    term.get_key();
}