Thanks!

One more question, what is the difference between this two definitions:

julia> f(x) = x
f (generic function with 1 method)


julia> g(x) = identity(x)
g (generic function with 1 method)


julia> f(10)
10


julia> g(10)
10


Reply via email to