We can define a function to perform function composition using anonymous function syntax:
f ∘ g = x -> f(g(x))
Note that this definition is equivalent to each of the following definitions:
∘(f, g) = x -> f(g(x))
or
function ∘(f, g)
x -> f(g(x))
end
recalling that in Julia,...