blob: ec9fc30f3d2260c0445686698aa1977b32250c2e [file] [log] [blame]
#include <iostream>
#include "json.hpp"
using json = nlohmann::json;
int main()
{
// create JSON array
json array = {"first", "2nd", "third", "fourth"};
// output element at index 2 (third element)
std::cout << array.at(2) << '\n';
}