RosettaCodeData/Task/Higher-order-functions/C++/higher-order-functions-1.cpp
Ingy döt Net 6f050a029e update
2013-06-05 21:47:54 +00:00

21 lines
241 B
C++

// Use <functional> for C++11
#include <tr1/functional>
#include <iostream>
using namespace std;
using namespace std::tr1;
void first(function<void()> f)
{
f();
}
void second()
{
cout << "second\n";
}
int main()
{
first(second);
}