1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-25 13:41:56 +03:00
Files
json/doc/mkdocs/docs/integration/example.cpp
2022-01-09 14:32:38 +01:00

11 lines
174 B
C++

#include <nlohmann/json.hpp>
#include <iostream>
#include <iomanip>
using json = nlohmann::json;
int main()
{
std::cout << std::setw(4) << json::meta() << std::endl;
}