Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VitaminaCPP/48209ca7de0e07eb60dd to your computer and use it in GitHub Desktop.
Save VitaminaCPP/48209ca7de0e07eb60dd to your computer and use it in GitHub Desktop.
struct imprimidor
{
void operator()(int numero)
{
std::cout << numero << ": "
<< std::string(numero, '*') << '\n';
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment