You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
185 B

  1. #include <json.hpp>
  2. using json = nlohmann::json;
  3. int main()
  4. {
  5. // create a JSON null value
  6. json j(nullptr);
  7. // serialize the JSON null value
  8. std::cout << j << '\n';
  9. }