go-toml/parse/testfiles/valid/BurntSushi/raw-string.json

31 lines
762 B
JSON

{
"slash" : {
"type" : "string",
"value" : "This string has a \\/ slash character."
},
"formfeed" : {
"type" : "string",
"value" : "This string has a \\f form feed character."
},
"backslash" : {
"type" : "string",
"value" : "This string has a \\\\ backslash character."
},
"newline" : {
"value" : "This string has a \\n new line character.",
"type" : "string"
},
"backspace" : {
"type" : "string",
"value" : "This string has a \\b backspace character."
},
"carriage" : {
"type" : "string",
"value" : "This string has a \\r carriage return character."
},
"tab" : {
"type" : "string",
"value" : "This string has a \\t tab character."
}
}