504012a3db
As <iostream> is not included in json.hpp any more, all code examples need to include <iostream> now.
17 lines
329 B
C++
17 lines
329 B
C++
#include <iostream>
|
|
#include "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';
|
|
}
|