A json macro for the bourne JSON library.
Example
json!
A json macro for the bourne JSON library.
json!(
{
"int": 1234,
"float": 3.14,
"bool": true,
"null": null,
"string": "hello, world",
"array": [1, 2, 3],
"object": {
"one": 1,
"two": 2,
"three": 3
}
}
)