A simple library to left pad a string with a given character up to a certain length.
```rust use padleft::leftpad;
fn main() { asserteq!(leftpad("hello".tostring(), 15, 'π'), "ππππππππππhello".tostring()); } ```
sh
cargo test
sh
cargo doc --open