macro_rules! rprintln {
() => { ... };
($($rest: tt)*) => { ... };
}Expand description
Print with a newline via the R output stream.
Works like println! but integrates with R and respects
redirection with functions like sink() and capture.output()