1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-26 13:43:02 +04:00
Files
json/doc/mkdocs/docs/integration/vcpkg/example.cpp
T
2021-08-18 20:49:13 +02:00

10 lines
139 B
C++

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