pub trait Output { // Required methods fn print(&mut self, what: String) -> Result<()>; fn output(&self) -> Option<String>; }
Trait which Context is using to access or redirect the µcad code’s console output.
Print into output buffer.
Access captured output.