json/doc/examples/operatorarray__size_type_const.cpp
2016-01-30 20:23:14 +01:00

13 lines
233 B
C++

#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';
}