What is the difference between backticks (``) & double quotes (\"\") in golang?
``
represents an uninterpreted strings and ""
is an interpreted string.
The value of a raw string literal (uninterpreted strings) is the string composed of the uninterpreted (implicitly UTF-8-encoded) characters between the quotes
Interpreted string literals are character sequences between double quotes, as in "bar". Within the quotes, any character may appear except newline and unescaped double quote.
PS: italicized words are mine
https://golang.org/ref/spec#String_literals