15 lines
230 B
C++
15 lines
230 B
C++
#include <json.hpp>
|
|
|
|
using namespace nlohmann;
|
|
|
|
int main()
|
|
{
|
|
// an anonymous enum
|
|
enum { t = 17 };
|
|
|
|
// create a JSON number from the enum
|
|
json j(t);
|
|
|
|
// serialize the JSON numbers
|
|
std::cout << j << '\n';
|
|
}
|