macro_rules! pprn {
($($t:tt)*) => { ... };
}
Expand description
Similar to pprint!
, but unwraps the Result.
This is a convenience macro that panics if printing fails.
ยงExamples
use pyprint::pprn;
pprn!("Hello", "World", sep=", ");
pprn!(1, 2, 3, end=".\n");