[][src]Function text_box::utils::clear_screen

pub fn clear_screen()

Clear all screen function simplified.

Example

You can call this function like this:

use text_box::utils;
 
fn main() {
    utils::clear_screen();
}

or like this:

use text_box::utils::clear_screen;
 
fn main() {
    clear_screen();
}