pr3 0.1.0

My first parser with peg
Documentation
1
2
3
4
5
6
7
8
use pr3::list_parser;

fn main() {
    assert_eq!(
        list_parser::list("[1,1,2,3,5,8]"),
        Ok(vec![1, 1, 2, 3, 5, 8])
    );
}