lformat 0.2.1

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

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

# Example

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