This commit is contained in:
nlohmann
2024-12-10 08:42:33 +00:00
parent b014c90f94
commit ab14172173
270 changed files with 1412 additions and 1034 deletions

View File

@@ -0,0 +1,10 @@
#include <nlohmann/json.hpp>
#include <iostream>
#include <iomanip>
using json = nlohmann::json;
int main()
{
std::cout << std::setw(4) << json::meta() << std::endl;
}