Tacit programming: Difference between revisions

Content deleted Content added
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)