简单类型 / 字符串

# \t Insert a tab.
# \n Insert a newline.
# \r Insert a carriage return.
# \' or ' Insert a single quote.
# \" Insert a double quote.
# \\ or \ Insert a backslash character.

str_v = "She said \"Hello!\" to me."
# str is "She said "Hello!" to me."

puts "str_v is \"#{str_v}\""