Question: Distinguish between list and Array

a:=[1,2,3]:

b:=[1,2,3]:

evalb(a=b)    #The result is true

c:=Array([1,2,3]):

d:=Array([1,2,3]):

evalb(c=d)    #The result is false

This is Why?

Please Wait...