tato_video 0.1.21

A Fantasy video chip that runs on any potato powered computers. Bring your own back-end!
Documentation
1
2
3
4
5
6
7
8
9

#[doc(hidden)]
#[macro_export]
/// Simply formats text characters so that "Videochip Error:" prints in red, and "body" prints in orange.
macro_rules! err {
    ($body:expr) => {
        concat!("\x1b[31mVideochip Error: \x1b[33m", $body, "\x1b[0m")
    };
}