6 lines
114 B
C#
6 lines
114 B
C#
|
|
static Func Y(FuncFunc f) {
|
||
|
|
return delegate (int x) {
|
||
|
|
return f(Y(f))(x);
|
||
|
|
};
|
||
|
|
}
|