json/doc/examples/operatorarray__key_type_const.cpp

16 lines
256 B
C++
Raw Normal View History

2015-06-25 00:40:16 +02:00
#include <json.hpp>
using json = nlohmann::json;
2015-06-25 00:40:16 +02:00
int main()
{
// create a JSON object
const json object =
2015-06-25 00:40:16 +02:00
{
{"one", 1}, {"two", 2}, {"three", 2.9}
};
// output element with key "two"
std::cout << object["two"] << '\n';
}