1 #include <nlohmann/json.hpp>
2 #include <iostream>
3 
4 using json = nlohmann::json;
5 
main()6 int main()
7 {
8     std::cout << json::meta() << std::endl;
9 }
10