4 lines
60 B
Ruby
4 lines
60 B
Ruby
|
|
str = "llo world"
|
||
|
|
str.prepend("He")
|
||
|
|
p str #=> "Hello world"
|