79643210

Date: 2025-05-29 02:29:37
Score: 0.5
Natty:
Report link

" - string (double quote)

var str string = "Hello world!" // valid

' - rune (equals to char in C/C++)

var str string = 'Hello world!' // invalid, error: more than one character in rune literal
var c rune = 'H' // valid

` - string (single quote)

var str string = `Hello world!`  // valid
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Igor