blob: 1078f360e3a44b7b950f8c1d70c7b09d35e31547 [file] [log] [blame]
#include <json.hpp>
using json = nlohmann::json;
int main()
{
// create a JSON number from number_integer_t
json::number_integer_t value = 42;
json j(value);
// serialize the JSON numbers
std::cout << j << '\n';
}