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