Skip to content

Instantly share code, notes, and snippets.

@rc1
Created May 9, 2014 15:46
Show Gist options
  • Select an option

  • Save rc1/593439b500c6f056b480 to your computer and use it in GitHub Desktop.

Select an option

Save rc1/593439b500c6f056b480 to your computer and use it in GitHub Desktop.
Lambdas
// From: http://www.cprogramming.com/c++11/c++11-lambda-closures.html
#include <iostream>
using namespace std;
int main()
{
auto func = [] () { cout << "Hello world"; };
func(); // now call the function
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment