1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-13 20:21:48 +03:00
Files
json/doc/examples/meta.cpp
2017-01-28 17:12:29 +01:00

10 lines
140 B
C++

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