mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-11 21:00:35 +01:00
23 lines
384 B
C++
23 lines
384 B
C++
|
#include <iostream>
|
||
|
|
||
|
# define JSON_DIAGNOSTICS 1
|
||
|
#include <nlohmann/json.hpp>
|
||
|
|
||
|
using json = nlohmann::json;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
json j;
|
||
|
j["address"]["street"] = "Fake Street";
|
||
|
j["address"]["housenumber"] = "12";
|
||
|
|
||
|
try
|
||
|
{
|
||
|
int housenumber = j["address"]["housenumber"];
|
||
|
}
|
||
|
catch (const json::exception& e)
|
||
|
{
|
||
|
std::cout << e.what() << '\n';
|
||
|
}
|
||
|
}
|