https://play.golang.org/p/WX5BJVLjIkR
package main
func main() {
_ = true == '\\'
}
produces
./prog.go:4:11: invalid operation: true == '\u005c' (mismatched types untyped bool and untyped rune)
It should almost certainly say '\\' not '\u005c'.
Took me a while to decode the first time I saw it.
https://play.golang.org/p/WX5BJVLjIkR
produces
It should almost certainly say
'\\'not'\u005c'.Took me a while to decode the first time I saw it.