metaeducation / rebol-issues

6 stars 1 forks source link

SAME? on VECTORs return TRUE even when vectors are not identical #2400

Open Oldes opened 4 years ago

Oldes commented 4 years ago

Current behaviour:

>> v1: make vector! [integer! 32 [1 2]]
== make vector! [integer! 32 2 [1 2]]

>> v2: copy v1
== make vector! [integer! 32 2 [1 2]]

>> same? v1 v2
== true ;<------- should be false!