og_fmt 1.0.4

The original `format!`
Documentation
1
2
3
4
5
6
7
#[macro_use]
extern crate og_fmt;

fn main() {
    let msg = fmt!("Original fmt! is the #{} fmt!", 1);
    println!("{}", msg);
}