```a = b + c operator fun addition(a: Vec2, b: Ve...
# getting-started
e
Copy code
a = b + c

operator fun addition(a: Vec2, b: Vec2): Vec2 {
    x = a.x + b.x
    y = a.y + b.y
    return this;
}