4 lines
96 B
Ruby
4 lines
96 B
Ruby
s = "Hello wo"
|
|
s += "rld" # new string object
|
|
s << "!" # mutates in place, same object
|
|
puts s
|