ason 2.1.1

ASON is a data serialization format that evolved from JSON, featuring strong numeric typing and native support for enumeration types.
Documentation
{
    number_list: [1, 2, 3]
    string_list: ["one", "two", "three"]
    list_with_trailing_comma: [1, 2, 3, 4,]
    list_with_space_separator: ["one" "two" "three" "four"]
    mulitline_list: [
        1
        2
        3
    ]
    mulitline_list_with_commas: [
        1,
        2,
        3
    ]
    mulitline_list_with_trailing_comma: [
        1,
        2,
        3,
    ]
}