Created
August 2, 2019 14:38
-
-
Save dhirabayashi/b0988c6371a3e16e33b4a297ad79177b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main(void){ | |
auto func = [](int a, int b) {return a + b;}; | |
cout << func(3, 4) << endl; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment