Why do the following strings give me the same output in the Ruby interpreter?
'f:\new'
'f:\\new'
Both strings result in: "f:\\new"
. I was expecting the second string to display "f:\\\\new"
(if not that, then the first one should have shown "f:\new"
)