`a.add(b)` and `a.plus(b)` are two different thing...
# language-proposals
r
a.add(b)
and
a.plus(b)
are two different things in my mind - The first one mutates the receiver object, while the second one is pure and simply returns the result of the addition of
a
and
b
.