Created
September 10, 2017 15:28
-
-
Save demid5111/d1e6d3df8f8f22091693da73d46f3ad6 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> | |
int main () { | |
int counter = 10; | |
auto basicLambdaFunc0 = [] () { std::cout << "Hello, lambda" << counter << std::endl;}; | |
basicLambdaFunc0(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment