00001 #include <json.hpp> 00002 00003 using json = nlohmann::json; 00004 00005 int main() 00006 { 00007 // create a JSON value 00008 json a = 23; 00009 00010 // move contents of a to b 00011 json b(std::move(a)); 00012 00013 // serialize the JSON arrays 00014 std::cout << a << '\n'; 00015 std::cout << b << '\n'; 00016 }