Multi-nested

[foo.bar.baz]
bat = "hi"

#↓ Equivalent JSON

{
    "foo" : {
        "bar" : {
            "baz" : {
                "bat" : "hi"
            }
        }
    }
}
Comments