macro_rules! iprintln {
    ($($fmt:tt)*) => { ... };
}
Expand description

println! but using iformat!.

Currently this allocates the complete formatted string.

For details on the context syntax see context!.

use interpolator::iprintln;
iprintln!("{a}, {b:?}", a = 10, b:? = "test").unwrap();