Macro reusable_fmt::prntln[][src]

macro_rules! prntln {
    ($key:ident, $d($dargs:tt)*) => { ... };
    ($d($dargs:tt)*) => { ... };
}
Expand description

Wrapper around println!

This wrapper is auto generated

Example

fmt_reuse! {
    TEST = "Hello {}";
}

fn test() {
	prntln!(TEST, "World"); // Hello World
}