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/27ab2993f186884d5ab2 to your computer and use it in GitHub Desktop.
Save VitaminaCPP/27ab2993f186884d5ab2 to your computer and use it in GitHub Desktop.
std::vector<int> f = { 1, 1, 2, 3, 5, 8, 13, 21 };
// Creamos el objeto-funcion
imprimidor imprime;
for (auto n : f)
{
// Usamos el objeto-funcion
imprime(n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment