blob: 2ef7947817838ec0889bf61d3ac9f385897ef45d [file] [log] [blame]
#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';
}