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