![]() |
#2
锋了2013-06-15 22:40
|

#include <iostream>
using std::cout;
using std::endl;
int main(void)
{
[] ()
{
cout << "Hello World" << endl;
} ();
return 0;
}
g++ -Wall a.cpp -std=c++11
Compilation finished at Sat Jun 15 20:01:00
lambda表达式诶