1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-30 07:33:01 +04:00

📝 add documentation for integration via vcpkg

This commit is contained in:
Niels Lohmann
2021-08-18 20:49:13 +02:00
parent abd829e6c6
commit 23e3b622aa
4 changed files with 51 additions and 2 deletions
@@ -0,0 +1,9 @@
#include <nlohmann/json.hpp>
#include <iostream>
using json = nlohmann::json;
int main()
{
std::cout << json::meta() << std::endl;
}