Skip to content

Instantly share code, notes, and snippets.

@demid5111
Created September 10, 2017 15:28
Show Gist options
  • Save demid5111/d1e6d3df8f8f22091693da73d46f3ad6 to your computer and use it in GitHub Desktop.
Save demid5111/d1e6d3df8f8f22091693da73d46f3ad6 to your computer and use it in GitHub Desktop.
#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