vector/operator
+(vector/a, vector/b)
return new/vector(a.x + b.x, a.y + b.y)
mob/verb/test()
var/vector
a = new(1, 2)
b = new(3, 4)
c = a + b
usr << "c = ([c.x], [c.y])" // outputs 'c = (4, 6)'
This was mentioned a while ago on the forums by Audeuro.