minicrossterm/examples/Crossterm 0.2.1/bin.rs

21 lines
450 B
Rust

//! This bin folder can be used to try the examples out located in the examples directory.
//!
//! All you need to do is:
//!
//! - Download the crossterm source code.
//! - Add this in the Cargo.toml file:
//! ``` [[bin]]
//! name = "example_bin"
//! path = "./examples/bin.rs"
//! ```
//!
//! - Run program with: `cargo run`
mod cursor;
mod terminal;
use terminal::alternate_screen;
fn main() {
alternate_screen::t();
}