Function composition: Difference between revisions

m
(Pari/GP version added, with notes on 2.4.2 vs. 2.4.3)
Line 803:
 
=={{header|PARI/GP}}==
{{works with|PARI/GP|2.4.2 and above}}
<lang>compose(f, g)={
x -> f(g(x))