json/doc/examples/operatorarray__size_type_const.cpp

13 lines
230 B
C++
Raw Normal View History

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