json/doc/examples/meta.cpp

11 lines
160 B
C++
Raw Normal View History

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