Hi there,
How do I make my custom type instance equal in Julia. 
Why two instances with identical values on each field return me 'false' in 
this case?
Thank you.

type Pair
    a::Int
    b::Int
end

x = Pair(1,2)
y = Pair(1,2)

println (x==y)    # returns false


Reply via email to