easyterm 0.1.0

Package to easy work with terminal
Documentation
  • Coverage
  • 0%
    0 out of 16 items documented0 out of 15 items with examples
  • Size
  • Source code size: 5.28 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 268.18 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • XmasApple/easyterm
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • XmasApple

EasyTerm

Cargo.toml

[dependencies]
easyterm = "0.1.0"

How to use

and add this to your lib.rs or main.rs:

    use easyterm::EasyTerm;

    fn main() {
        EasyTerm::set_cursor_invisible();
        EasyTerm::clear_screen();
        EasyTerm::set_cursor_top_left();
        println!("Text at top left corner in absolutely clear terminal");
        EastTerm::move_cursor_down_by(n: 2);
        println!("Text 2 lines below")
    }