/// An example how to use the ANSI escape sequence.
usestd::io::{Result, Write};use anes;fnmain()->Result<()>{letmut stdout =std::io::stdout();write!(stdout,"{}",anes::SaveCursorPosition)?;write!(stdout,"{}",anes::RestoreCursorPosition)?;
stdout.flush()?;Ok(())}