my_parser_some 0.1.0

Some description
Documentation
1
2
3
4
5
6
7
8
9
use my_parser_some::list_parser;

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