kma_rust_parser_prokopchuk 0.1.0

A brief description
Documentation
1
2
3
4
5
use kma_rust_parser_prokopchuk::*;

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