1
0
mirror of https://github.com/nlohmann/json.git synced 2025-04-23 22:05:33 +03:00
Niels Lohmann a8f0cd15df
📝 add mkdocs
2020-05-24 13:03:04 +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;
}