self + other -> String[permalink][rdoc][edit](string other_string) → String-
文字列と other を連結した新しい文字列を返します。
- [PARAM]
other: - 文字列
- [RETURN]
- self と other を連結した文字列
p "str" + "ing" # => "string" a = "abc" b = "def" p a + b # => "abcdef" p a # => "abc" (変化なし) p b # => "def" - [PARAM]