Macro reusable_fmt::prnt[][src]

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

Wrapper around print!

This wrapper is auto generated

Example

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

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