Files
cargoxx/scripts/curated-snippets/nlohmann_json.cpp

10 lines
144 B
C++

#include <nlohmann/json.hpp>
import std;
int main() {
nlohmann::json j;
j["k"] = 42;
std::println("{}", j.dump());
return 0;
}