libcorn 0.10.1

Parsing engine for Corn, a simple and pain-free configuration language.
Documentation
{
  "name": {
    "first": "John",
    "last": "Smith",
    "full": "John Smith"
  },
  "age": 32,
  "placeholder": null,
  "employment": {
    "employed": true,
    "name": "Postman",
    "sinceYear": 2019
  },
  "parents": {
    "father": {
      "birthday": {
        "year": 1970,
        "month": 2,
        "day": 3
      }
    }
  },
  "gender": "M",
  "favourites": [
    "blue",
    "fish",
    "egg",
    "Postman",
    4.73753,
    false,
    {
      "hello": "world",
      "food": {
        "favourite": "egg",
        "hated": "beef"
      }
    }
  ],
  "empty1": {},
  "empty2": [],
  "negative": {
    "int": -34,
    "float": -34.34
  }
}