parser-on-rust 0.1.1

parser on rust
Documentation
1
2
3
4
5
6
7
8
9
10
# Simple reuse of parse lib

Education purpose to implement of simple parser by using external creat
## Usage

```rust
use parser-on-rust::*;

pub fn main() {
    println!("{:?}", list_parser::list("[1,1,2,3,5,8]"));
}
```