libcorn 0.10.1

Parsing engine for Corn, a simple and pain-free configuration language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    one={foo="bar" bar="foo"}
    two={foo=1 bar=2}
    three={foo=1.0 bar=2.0}
    four={foo=true bar=false}
    five={foo=null bar=null}
    six={foo={} bar={}}
    seven={foo=[] bar=[]}

    eight=["foo""bar"]
    nine=[truefalse]
    ten=[1 2]
    eleven=[[][]]
    twelve=[{}{}]
}