Question: How do I understand Example 10 the second half of help(use)?

g := proc() use a=a+b in use b= a-b in a*b end use end use end proc:

Maple shows g := proc() (a+b)*(a+b) end proc. 

My guess is (a+b)*a. What is wrong with me?

Please Wait...