owner = {
name = "Vincent Prouillet",
bio = "Someone",
dob = 1979-05-27, # first-class date type
}
vs
owner: {
name: "Vincent Prouillet",
bio: "Someone",
dob: 1979-05-27, # first-class date type
}
First one is more similar to TOML while second one to JSON
vs
First one is more similar to TOML while second one to JSON