简单类型 / 字符串

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

val str = "She said \"Hello!\" to me."
//str is "She said "Hello!" to me."

println("str is $str")