minicrossterm/examples/cursor_example.rs

8 lines
115 B
Rust
Raw Normal View History

2018-01-04 00:43:54 +11:00
extern crate crossterm;
use self::crossterm::cursor;
pub fn goto(x: i16, y: i16)
{
cursor::get().goto(x,y);
}