RosettaCodeData/Task/Y-combinator/Python/y-combinator-2.py
2023-07-01 13:44:08 -04:00

1 line
43 B
Python

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