1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-07 23:41:10 +03:00
Files
json/docs/mkdocs/docs/examples/basic_json__basic_json.cpp
2025-01-17 06:53:35 +01:00

18 lines
338 B
C++

#include <iostream>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
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';
}