static class YCombinator { static Func Fix(Func, Func> f) => x => f(Fix(f))(x); }