1 2 3 4 5 6 7 8 9 10
#include <iostream> #include "list_pkgs.hh" #include "vars.hh" void list_pkgs() { for (auto repo : repos) { std::cout << repo.first << std::endl; } }