rust_parser_very_unique 0.1.0

cringe
Documentation
1
2
3
4
5
use rust_parser_very_unique::list_parser;

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