Skip to content

Instantly share code, notes, and snippets.

@lyandut
lyandut / 0_learn_json.cpp
Last active July 16, 2024 22:13
Some examples of nlohmann/json (JSON for Modern C++).
#include <iostream>
#include <cassert>
#include <iomanip>
#include <fstream>
#include "single_include/nlohmann/json.hpp"
using namespace std;
using json = nlohmann::json;
// add snippnets here.