RosettaCodeData/Task/Y-combinator/C-sharp/y-combinator-10.cs
2020-02-17 23:21:07 -08:00

5 lines
114 B
C#

static Func Y(FuncFunc f) {
return delegate (int x) {
return f(Y(f))(x);
};
}