Macro rstubs::device::println

source ·
macro_rules! println {
    (dbg: $($arg:tt)*) => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Macro for printing to the cga screen.

// print to the kout screen
print!("Hello World!");
// print to the dbg screen
print!(dbg: "Hello World!");