Hey everyone! This gives an error julia> @test widemul(Int128(3), Int128(2)) === Int128(6) ERROR: test failed: 6 is 6 in expression: widemul(Int128(3),Int128(2)) === Int128(6) in error at ./error.jl:21 in default_handler at test.jl:30 in do_test at test.jl:53
julia> But this does not julia> @test widemul(Int128(3), Int128(2)) == Int128(6) julia> Could someone please explain how is `===` differing from `==` in this case? Regards, Pranit Bauva
