mirror of
https://github.com/nlohmann/json.git
synced 2024-12-14 22:19:00 +08:00
13 lines
218 B
C++
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';
|
||
|
}
|