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

10 lines
139 B
C++
Raw Normal View History

2020-05-24 11:03:04 +00:00
#include <nlohmann/json.hpp>
#include <iostream>
using json = nlohmann::json;
int main()
{
std::cout << json::meta() << std::endl;
}