1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-24 12:43:01 +04:00
Files
json/integration/example.cpp
T

11 lines
174 B
C++

#include <nlohmann/json.hpp>
#include <iostream>
#include <iomanip>
using json = nlohmann::json;
int main()
{
std::cout << std::setw(4) << json::meta() << std::endl;
}