1
0
mirror of https://github.com/nlohmann/json.git synced 2025-08-06 07:02:42 +03:00
This commit is contained in:
nlohmann
2025-01-17 05:54:35 +00:00
parent 4ce072a05e
commit 9cd1c63d00
330 changed files with 5398 additions and 1012 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;
}