self + other -> NumericRuby 2.4.0 から[permalink][rdoc][edit](Integer) → Integer (Float) → Float (Rational) → Rational (Complex) → Complex-
selfにotherを足した値(=和)を返します。Integerオブジェクトを左項とする算術演算子+はこのメソッドの呼び出しになります。- [PARAM]
other: -
selfに加算する数値
p 3 + 4 # => 7 - [PARAM]