Search Results

4
votes

Ruby string mutability

Not really sure what exactly your question is, but consider the following code: 10.times { puts "abc".object_id } This prints out 10 different id's. Why? Just beca …
2
votes

What is the order of operations with this concatenation?

The first example is syntactic sugar, normally you see this written like: x = "Here is a string that " \ "I want to split across " \ "several lines..." So …