1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-28 22:53:03 +04:00

📝 overwork documentation

This commit is contained in:
Niels Lohmann
2022-01-09 14:32:38 +01:00
parent 6d8d043add
commit ef556019be
7 changed files with 265 additions and 122 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
#include <nlohmann/json.hpp>
#include <iostream>
#include <iomanip>
using json = nlohmann::json;
int main()
{
std::cout << json::meta() << std::endl;
std::cout << std::setw(4) << json::meta() << std::endl;
}