CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
using namespace std;
auto fruit(string s){
return [s](){return s;};
}
int main() {
auto apple = fruit("apple");
cout << apple() << endl;
auto pear = fruit("pear");
cout << pear() << endl;
auto mango = fruit("mango");
cout << mango() << endl;
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run