This commit is contained in:
nlohmann
2026-07-02 14:09:18 +00:00
parent f2f73132b2
commit 4deadb2473
254 changed files with 678 additions and 475 deletions
+16
View File
@@ -0,0 +1,16 @@
#include <iostream>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
int main()
{
// create a JSON value
json j = {{"one", 1}, {"two", 2}};
// format_as() is found via argument-dependent lookup, the same way
// fmt::format/fmt::print would find it
auto j_str = format_as(j);
std::cout << j_str << std::endl;
}