Michael Somos on Fri, 21 Feb 2003 11:22:14 -0500


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

gp: variables


pari-dev,

? test(v)=x=v[1];y=v[2];0 
? for(x=1,1,for(y=3,4,print(x," ",y," ",[x,y]," ",test([x,y]))));
1 3 [1, 3] 0
4 4 [1, 4] 0
? x=1;y=3;print(x," ",y," ",[x,y]," ",test([x,y]));
3 3 [1, 3] 0

is this supposed to happen? Shalom, Michael