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

12 lines
188 B
C++

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