cute_print 0.6.1

An easy and beautiful way to print
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(test)]
mod terminal_test {
    use crate::get_terminal_width;

    #[test]
    fn get_terminal_width_test() {
        match get_terminal_width() {
            Some(width) => {
                assert_ne!(width, 0);
                width
            }
            _ => 0,
        };
    }
}