Double vs single quotes
except the interpolation, another difference is that 'escape sequence' does not work in single quote
puts 'a\nb' # just print a\nb
puts "a\nb" # print a, then b at newline
" "
allows you to do string interpolation, e.g.:
world_type = 'Mars'
"Hello #{world_type}"