Why is "#{String}" a common idiom in Ruby
- by Tetsujin no Oni
A Ruby dev I know asked this; my answer is below... Are there other, better reasons?
Why do so many Ruby programmers do
"{string}"
rather than
string
since the second form is simpler and more efficient?