Macro r_println
Source macro_rules! r_println {
() => { ... };
($($arg:tt)*) => { ... };
}
Expand description
Print to R’s console with a newline (like println!).
§Example
ⓘuse miniextendr_api::r_println;
r_println!(); r_println!("Hello, world!");
r_println!("value: {}", 42);