Content deleted Content added
m Added link to epithet |
m →Functional programming: line highlight |
||
Line 52:
The following Haskell-like pseudo-code exposes how to reduce a function definition to its point-free equivalent:
<syntaxhighlight lang="haskell" line highlight="5">
p = \x -> \y -> \z -> f (g x y) z
= \x -> \y -> f (g x y)
|