macro_rules! println { (dbg: $($arg:tt)*) => { ... }; ($($arg:tt)*) => { ... }; }
Macro for printing to the cga screen.
// print to the kout screen print!("Hello World!"); // print to the dbg screen print!(dbg: "Hello World!");