mirror of
https://github.com/crossterm-rs/crossterm.git
synced 2025-10-02 15:26:05 +00:00
19 lines
319 B
Rust
19 lines
319 B
Rust
extern crate crossterm;
|
|
|
|
use self::crossterm::crossterm_style::*;
|
|
use self::crossterm::crossterm_cursor::*;
|
|
use self::crossterm::crossterm_terminal::*;
|
|
|
|
use std::io::{stdin, stdout, Write};
|
|
|
|
pub mod color;
|
|
pub mod cursor;
|
|
pub mod terminal;
|
|
|
|
fn main() {
|
|
|
|
terminal_cursor::get().goto(5,5);
|
|
println!();
|
|
|
|
}
|