json/doc/examples/meta.cpp
2017-12-16 12:37:25 +01:00

11 lines
160 B
C++

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