ts_lib 0.1.0

A collection of functions I find useful for my projects
Documentation
1
2
3
4
5
pub fn clear_console() {
    // Clear the screen and put the cursor at first row & first col of the screen
    print!("\x1B[2J\x1B[1;1H");
}