Списки не совпадают, они просто содержат одинаковые элементы. Чтобы проверить это, вам нужно сравнить каждый элемент списка друг с другом, например, как показано ниже.
♥list1 = a❚b❚c❚d
♥list2 = a❚b❚c❚d
♥areListsTheSame = true
if ⊂♥list1.Count == ♥list2.Count⊃
♥i = 1
while ⊂♥areListsTheSame && ♥i <= ♥list1.Count⊃
if ⊂♥list1⟦♥i⟧ != ♥list2⟦♥i⟧⊃
♥areListsTheSame = false
end if
♥i = ♥i + 1
end while
else
♥areListsTheSame = false
end if
if ⊂♥areListsTheSame⊃
dialog ‴The lists are the same‴
else
dialog ‴The lists are not the same‴
end if