This commit is contained in:
nlohmann
2026-05-09 09:02:24 +00:00
parent 3d26d62a39
commit 9446cb8fa1
246 changed files with 631 additions and 480 deletions
+10
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;
}