parser_kma 0.1.0

My first parser with peg
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
### My parser

my parser for education purpose

![some image](image.png)

### Example

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

...