Question: express equations in a list

Hi, I have a set of equations and I want to express them into a list. L:=[]; for i from 1 to 2 do a[i]=b[i]+c[i]; L:=[op(L),'a[i]'=a[i]]; end do the result is: [a[i]=b[1]+c[1],a[i]=b[2]+c[2]]; But what I want is: [a[1]=b[1]+c[1],a[2]=b[2]+c[2]]; Is there any way to implement it? thanks Gepo
Please Wait...