The result from function a(x,y) is not what I expect.
How to fix it?


The proper approach …

def a(x:var[],y:var[])
{
return x<1> + y<2> + x;
};
3 Likes
The result from function a(x,y) is not what I expect.
How to fix it?


The proper approach …

def a(x:var[],y:var[])
{
return x<1> + y<2> + x;
};