mirror of
https://github.com/nlohmann/json
synced 2024-12-02 00:20:06 +00:00
17 lines
255 B
C++
17 lines
255 B
C++
|
#include <json.hpp>
|
||
|
|
||
|
using namespace nlohmann;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
// create a JSON value
|
||
|
json a = 23;
|
||
|
|
||
|
// move contents of a to b
|
||
|
json b(std::move(a));
|
||
|
|
||
|
// serialize the JSON arrays
|
||
|
std::cout << a << '\n';
|
||
|
std::cout << b << '\n';
|
||
|
}
|