macro_rules! outputln {
($console_output:expr) => { ... };
($console_output:expr,) => { ... };
($console_output:expr, $($args:tt)*) => { ... };
}
Expand description
Send formatted data to the GDB client console, with a newline appended.
The first argument must be a ConsoleOutput
.