json/doc/examples/operator_literal_json.cpp

13 lines
218 B
C++
Raw Normal View History

2021-11-08 00:07:16 +03:00
#include <iostream>
#include <iomanip>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
int main()
{
json j = R"( {"hello": "world", "answer": 42} )"_json;
std::cout << std::setw(2) << j << '\n';
}