What is the difference between backticks (``) & double quotes (\"\") in golang?
Backtick strings are analogs of multiline raw string in Python or Scala: r""" text """
or in JavaScript:
String.raw`Hi\u000A!`
They can:
Span multiple lines.
Ignore special characters.
They are useful:
For putting big text inside.
For regular expressions when you have lots of backslashes.
For struct tags to put double quotes in.