Do you mean like the pipe symbol?
rand() |> println
julia> (∘)(f, g) = x -> f(g(x))
∘ (generic function with 1 method)
julia> (sum ∘ rand)(10)
3.397728240035534
Tip: type \circ<tab> to get ∘
Enough Perl6 has left me with <compose>(.) to get ∘ :-)