Skip to content

Instantly share code, notes, and snippets.

@devjev
Created October 7, 2020 06:47
Show Gist options
  • Save devjev/e9b42168a12c759b1248df215749e329 to your computer and use it in GitHub Desktop.
Save devjev/e9b42168a12c759b1248df215749e329 to your computer and use it in GitHub Desktop.
Clear Terminal in Rust
fn clear_terminal() {
print!("{esc}[2J{esc}[1;1H", esc = 27 as char);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment