json/docs/examples/operator_literal_json.cpp
2022-04-30 18:05:59 +02:00

13 lines
218 B
C++

#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';
}