go-toml/parse/testfiles/valid/mmakaay/toml-hard-example.json

60 lines
1.5 KiB
JSON

{
"the" : {
"test_string" : {
"type" : "string",
"value" : "You'll hate me after this - #"
},
"hard" : {
"harder_test_string" : {
"type" : "string",
"value" : " And when \"'s are in the string, along with # \""
},
"another_test_string" : {
"type" : "string",
"value" : " Same thing, but with a string #"
},
"test_array" : {
"type" : "array",
"value" : [
{
"value" : "] ",
"type" : "string"
},
{
"type" : "string",
"value" : " # "
}
]
},
"test_array2" : {
"value" : [
{
"type" : "string",
"value" : "Test #11 ]proved that"
},
{
"value" : "Experiment #9 was a success",
"type" : "string"
}
],
"type" : "array"
},
"bit#" : {
"what?" : {
"value" : "You don't think some user won't do that?",
"type" : "string"
},
"multi_line_array" : {
"type" : "array",
"value" : [
{
"value" : "]",
"type" : "string"
}
]
}
}
}
}
}