9b32f72584
As I learned in https://github.com/melpon/wandbox/issues/209, this library is already installed at Wandbox, so we need to adjust the examples to use `#include "json.hpp"` insteas of `#include <json.hpp>`.
16 lines
309 B
C++
16 lines
309 B
C++
#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';
|
|
}
|