6 lines
71 B
Mathematica
6 lines
71 B
Mathematica
|
|
Func Y(FuncFunc f) {
|
||
|
|
return ^(int x) {
|
||
|
|
return f(Y(f))(x);
|
||
|
|
};
|
||
|
|
}
|