blob: 5ad97355e1349850d90f01ae7a4a069a7b1a10d8 [file] [log] [blame]
#include <json.hpp>
using json = nlohmann::json;
int main()
{
// create a JSON object
const json object =
{
{"one", 1}, {"two", 2}, {"three", 2.9}
};
// output element with key "two"
std::cout << object["two"] << '\n';
}