output_vt100 0.1.2

Utility to activate escape codes in Windows' CMD and PowerShell
Documentation
1
2
3
4
5
6
extern crate output_vt100;

fn main() {
    output_vt100::init();
    println!("\x1b[31mThis text is red!\x1b[0m");
}