json/doc/mkdocs/docs/integration/example.cpp

11 lines
174 B
C++
Raw Normal View History

2020-05-24 14:03:04 +03:00
#include <nlohmann/json.hpp>
#include <iostream>
2022-01-09 16:32:38 +03:00
#include <iomanip>
2020-05-24 14:03:04 +03:00
using json = nlohmann::json;
int main()
{
2022-01-09 16:32:38 +03:00
std::cout << std::setw(4) << json::meta() << std::endl;
2020-05-24 14:03:04 +03:00
}