您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678
  1. #include <nlohmann/json.hpp>
  2. int main() {
  3. nlohmann::json j = {
  4. {"foo", "bar"},
  5. };
  6. return j.size() == 1 ? 0 : 12;
  7. }