go questions

What's the result of this expression? "\"Hello\\"" + ` \"World\"` "Hello" "World" "Hello" "World" CORRECT "Hello" "World" ""Hello" \"World\"" 1: Go doesn't interpret the escape sequences in raw string
阅读全文