Skip to content

Instantly share code, notes, and snippets.

@dhirabayashi
Created August 2, 2019 14:38
Show Gist options
  • Save dhirabayashi/b0988c6371a3e16e33b4a297ad79177b to your computer and use it in GitHub Desktop.
Save dhirabayashi/b0988c6371a3e16e33b4a297ad79177b to your computer and use it in GitHub Desktop.
#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