og_fmt 1.0.4

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

#[test]
fn test() {
    assert_eq!(fmt!("{}", "foo"),
               format!("{}", "foo"));
    assert_eq!(::std::fmt::format(fmt_args!("{}", "foo")),
               ::std::fmt::format(format_args!("{}", "foo")));
}