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