mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
27 lines
524 B
C++
27 lines
524 B
C++
|
#include <iostream>
|
||
|
#include <iomanip>
|
||
|
#include <sstream>
|
||
|
#include <nlohmann/json.hpp>
|
||
|
|
||
|
using json = nlohmann::json;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
// create stream with serialized JSON
|
||
|
std::stringstream ss;
|
||
|
ss << R"({
|
||
|
"number": 23,
|
||
|
"string": "Hello, world!",
|
||
|
"array": [1, 2, 3, 4, 5],
|
||
|
"boolean": false,
|
||
|
"null": null
|
||
|
})";
|
||
|
|
||
|
// create JSON value and read the serialization from the stream
|
||
|
json j;
|
||
|
ss >> j;
|
||
|
|
||
|
// serialize JSON
|
||
|
std::cout << std::setw(2) << j << '\n';
|
||
|
}
|