pyprint 1.0.0

Library to enable python-style printing in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# pyprint

Getting tired of writine printing statements with format strings in rust? This is a library to enable python-style printing in rust. It is implemented using rust macros. Anything with the `Display` trait implemented can be printed.

## Usage

Simply write like python in rust.

```rust
use pyprint::pprn;
let a = 5;
pprn!("Progress:", a, sep=" ", end="\r");
```