You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.main.cpp 136B

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. }