15 lines
235 B
C++
15 lines
235 B
C++
|
#include <json.hpp>
|
||
|
|
||
|
using namespace nlohmann;
|
||
|
|
||
|
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';
|
||
|
}
|