WhisperCom/libs/json/doc/mkdocs/docs/integration/conan/example.cpp

10 lines
139 B
C++

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