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
2024-12-10 22:24:12 +00:00
parent 364a48d9d6
commit 41cbe4b3ef
9 changed files with 83 additions and 10 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;
}