00001 #include <json.hpp> 00002 00003 using json = nlohmann::json; 00004 00005 int main() 00006 { 00007 // an anonymous enum 00008 enum { t = 17 }; 00009 00010 // create a JSON number from the enum 00011 json j(t); 00012 00013 // serialize the JSON numbers 00014 std::cout << j << '\n'; 00015 }