fun2.cpp 207 Bytes
#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;
};