1
0
mirror of https://github.com/nlohmann/json synced 2025-01-01 05:10:09 +00:00
nlohmannjson/doc/examples/basic_json__basic_json.cpp

17 lines
309 B
C++
Raw Normal View History

2015-06-20 22:59:33 +00:00
#include <json.hpp>
using json = nlohmann::json;
2015-06-20 22:59:33 +00: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';
}