#include <string> namespace reports { std::string render(int rows); } std::string render(int rows) { return "rows=" + std::to_string(rows); }