tty-overwriter 0.1.0

A lib to ease overwriting text in stdout. Make a body, then overwrite it as much as needed.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use tty_overwriter::prelude::*;

fn main() {
    println!("Printing 0 once !");
    println!("Next time it will be replaced by a 1");
    println!("Printing 0 once !");
    println!(
        "{}1",
        AnsiSeq::Move {
            up: 1,
            down: 0,
            left: 0,
            right: 9
        }
    )
}