cod 9.0.4

A mini, functional terminal drawing utility.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Prints text, moving the cursor to the start of the next line.
///
/// Does not print a newline, and thus does not flush line buffering.
#[macro_export]
macro_rules! println {
    ( $($format:tt)* ) => {
        ::std::print!($($format)*);
        $crate::goto::start();
        $crate::goto::down(1);
    };
}