Files
json/integration/example.cpp
T
2023-03-08 12:43:29 +00:00

11 lines
174 B
C++

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