RosettaCodeData/Task/Y-combinator/Python/y-combinator-2.py
2015-02-20 00:35:01 -05:00

1 line
43 B
Python

Y = lambda f: lambda *args: f(Y(f))(*args)