Tacit programming: Difference between revisions

Content deleted Content added
m Python: <code>
Line 22:
</syntaxhighlight>
 
For a more complex example, the [[Haskell]] code {{<code|1=>p = ((.) f) . g}}</code> can be translated as:
 
<syntaxhighlight lang="python">
p = partial(compose, partial(compose, f), g)
</syntaxhighlight>
 
===Functional programming===