Skip to content

Latest commit

 

History

History

14

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Exercise 10.14

Write a lambda that takes two ints and returns their sum.

Solution

[](const int &i, const int &j) { return i+j; }