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