clear_screen 0.1.0

Cross-platform terminal screen
Documentation
1
2
3
4
5
6
7
8
9

extern "C" {
    fn cls();
}
/// clear the screen
/// 清除屏幕
pub fn clear() {
    unsafe {cls()}
}