I am surprised at some string concatenation that I came across on a supported code base. Why, or how is it real, can I combine two lines together?
queue_name = 'gen-request-' "#{ENV['USERNAME'].gsub('.','')}" => "gen-request-robertkuhar"
I expected to see a β+β between two lines, but it was not there. Is this implied or something like that?
I know this just makes sense with interpolation in the middle. This is not what I ask. I want to know what is the syntax of a language that allows it to work in the first place.
source share