json/docs/examples/basic_json__basic_json.cpp

18 lines
338 B
C++
Raw Normal View History

#include <iostream>
#include <nlohmann/json.hpp>
2015-06-21 00:59:33 +02:00
using json = nlohmann::json;
2015-06-21 00:59:33 +02:00
int main()
{
// create a JSON array
json j1 = {"one", "two", 3, 4.5, false};
// create a copy
json j2(j1);
// serialize the JSON array
std::cout << j1 << " = " << j2 << '\n';
std::cout << std::boolalpha << (j1 == j2) << '\n';
}