Files
prosperon/point.cm
2025-11-24 23:09:51 -06:00

8 lines
93 B
Plaintext

var point = {}
point.add = function(a,b)
{
return {x: a.x+b.x, y: a.y+b.y}
}
return point