fun2.cpp 207 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 #include <iostream> #include <vector> #include <algorithm> #include <functional> using namespace std; int main () { auto f = [](int x, int y) {int z = x + y; return z + x;}; cout << f(3,4) << endl; };