+
+=
+ adds two Int values together. For Float values, see +..
Int
Float
+.
1 + 2 //-> 3
You can use += to add and assign to a variable.
let i = 3 i += 4 i //-> 7