my_parser_practice_3_1 0.1.0

My fisrt parser
Documentation
1
2
3
4
5
6
7
use my_parser_practice_3_1::*;

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

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