cli_clear_screen

Function cli_clear_screen 

Source
pub fn cli_clear_screen()
Expand description

Clears the terminal screen.

Sends the ANSI escape sequence to clear all lines and reset the cursor position.

ยงExample

use falcon_cli::cli_clear_screen;

cli_clear_screen();
println!("Screen cleared!");