Content deleted Content added
m →Fibonnaci sequence: rm - |
|||
Line 193:
In the section on Python in this article, the following Python definition is considered:
def example(x):
return baz(bar(foo(x)))
In point-free style, this could be written in Python as:
example = compose(foo, bar, baz)
|