### My first parser my parser for education purpose ![alt text](./image.png) ### Example ```rust assert_eq!(list_parser::list("[1,1,2,3,5,8]"), Ok(vec![1, 1, 2, 3, 5, 8])); ```