1
0
mirror of https://github.com/nlohmann/json synced 2024-11-24 04:40:13 +00:00
nlohmannjson/integration/vcpkg/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;
}