my_parser_striletska 0.1.1

A simple parser, that parses lists of integers from string format
Documentation
1
2
3
4
5
use my_parser_striletska::list_parser;
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]"));
}