lformat 0.1.1

Clone of Lua `string.format` in Rust based on C `s(n)printf`
Documentation
1
2
3
4
5
6
7
8
9
10
11
# lformat


**a clone of Lua `string.format` in Rust based on C `sprintf`**

Usage example:

```rust
use lformat::format;
let s = format("%d + %d = %d\n", &[&3, &9, &(3+9)]).unwrap();
assert_eq!(s, "3 + 9 = 12\n");
```