Why replication guides doesn't work in the Designscipt function?

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

var2

The proper approach …
var

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