8 lines
151 B
C++
Raw Normal View History

2020-08-30 11:54:41 +02:00
int func(int A, int B)
{
// Verify that we have at least c++14
auto mult_func = [](auto a, auto b) { return a * b; };
return mult_func(A, B);
}