Content deleted Content added
Artoria2e5 (talk | contribs) |
Artoria2e5 (talk | contribs) No edit summary |
||
Line 68:
= \x -> ((.) f) (g x)
= \x -> (((.) f) . g) x
p = ((.) f) . g
</syntaxhighlight>
Line 113 ⟶ 109:
In [[stack-oriented programming language]]s (and [[concatenative programming language|concatenative ones]], most of which are stack based{{cn|date=January 2020}}), point-free methods are commonly used. For example, a procedure to compute the [[Fibonacci number]]s might look like the following in [[PostScript]]:
<syntaxhighlight lang="postscript">
</syntaxhighlight>
|