1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-25 21:23:02 +04:00
Files
json/doc/examples/meta.cpp
T
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';
}