Question: about codes in the help of assign

Hello People in Mapleprimes,

 

I have a question about the codes in the help page of assign.

Please tell me about this.

The folliowing codes were written there:

code (A)

assign(a,c):

assign(a=d,b=2):

a,b,c;

 

The output of these was 

d,2,d

 

I think that assign(a,c) means assign(a=c) or a:=c, not c:=a.

If what I wrote was true, the output of the above code should be

d,2,c.

And, if I changed assign(a,c) to assign(c,a), the output was d,2,d, which is the output written on the helppage 

of the assign. On the other hand, the output of code A was surely d,2,d.

Why does assign(a,c) have the same meaning as assign(c,a)?

 

Best wishes

 

taro

Please Wait...