fprice 0.1.1

3자리 마다 콤마 찍어주는 api / https://github.com/YoungHaKim7/fprice
Documentation
# fprice
financial_price_indication


# 3자리 숫자마다 콤마(,) 찍어주는 api

- https://github.com/YoungHaKim7/fprice

# Example
```rs
let int = 123456778;
let a = fprice::fmt_num_i64_str(int);
println!("{}", a);
```

# Result
```bash
 123,456,778
```