parser_kma_crate_beimuk 0.1.0

A brief description
Documentation
1
2
3
4
5
6
use parser_kma_crate_beimuk::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]"));
}