1 unstable release
Uses old Rust 2015
0.1.0 | Feb 19, 2016 |
---|
#755 in Command-line interface
5KB
84 lines
rust-ansi-control
This is a library for controlling cursor and screen on ANSI terminals.
Documentation
Example
use ansi_control::*;
println!("This is a sample text.");
print!("{}", clear_display(Pos::Both));
lib.rs
:
This is a library for controlling a cursor and a screen, on ANSI terminals.
Example
use ansi_control::*;
println!("test 0");
print!("{}", set_column(1));
println!("test 1");
print!("{}", clear_display(Pos::Both));